The rowEditHandling property (string) specifies the default submit action for inline row editing in the JavaScript Gantt Chart.
Declaration
DayPilot.Gantt.rowEditHandlingPossible Values
"Update"- updates the row header text using the submitted value."PostBack"- fires theRowEditevent on the server side (ASP.NET WebForms only)"CallBack"- fires theRowEditevent on the server side (ASP.NET WebForms, ASP.NET MVC, Java only)
Default Value
"Update"Examples
JavaScript
const gantt = new DayPilot.Gantt("dp", {
rowEditHandling: "CallBack",
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
rowEditHandling: "CallBack",
// ...
};React
<DayPilotGantt
rowEditHandling="CallBack"
{/* ... */}
/>Vue
<DayPilotGantt
rowEditHandling="CallBack"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot