The rowEditHandling property (string) specifies the default submit action for inline row editing in the JavaScript Gantt Chart.
DayPilot.Gantt.rowEditHandling"Update" - updates the row header text using the submitted value.
"PostBack" - fires the RowEdit event on the server side (ASP.NET WebForms only)
"CallBack"- fires the RowEdit event on the server side (ASP.NET WebForms, ASP.NET MVC, Java only)
"Update"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"
<!-- ... -->
/>