The rowSelectHandling property (string) specifies the default JavaScript Gantt Chart action used for row selecting.
Declaration
DayPilot.Gantt.rowSelectHandlingPossible Values
"Update"- highlights the row using the built-in row selection styles."Notify"- fires theRowSelectevent on the server side (ASP.NET WebForms, ASP.NET MVC, Java only)."CallBack"- fires theRowSelectevent on the server side (ASP.NET WebForms, ASP.NET MVC, Java only)."PostBack"- fires theRowMoveevent on the server side (ASP.NET WebForms).
Default Value
"Update"Examples
JavaScript
const gantt = new DayPilot.Gantt("dp", {
rowSelectHandling: "CallBack",
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
rowSelectHandling: "CallBack",
// ...
};React
<DayPilotGantt
rowSelectHandling="CallBack"
{/* ... */}
/>Vue
<DayPilotGantt
rowSelectHandling="CallBack"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot