The rowHeaderColumnResizedHandling property (string) specifies the default handling of row header column width resize actions.
DayPilot.Scheduler.rowHeaderColumnResizedHandling"Update" updates the client-side Scheduler state after the user resizes a row header column.
"PostBack" triggers a postback after the resize. ASP.NET WebForms only.
"CallBack" triggers a callback after the resize. ASP.NET WebForms, ASP.NET MVC, and Java versions only.
"Update"After the user resizes a row header column, the onRowHeaderColumnResized event fires and the resized rowHeaderColumns item is updated automatically.
JavaScript
const dp = new DayPilot.Scheduler("dp", {
rowHeaderColumnResizedHandling: "CallBack",
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
rowHeaderColumnResizedHandling: "CallBack",
// ...
};React
<DayPilotScheduler
rowHeaderColumnResizedHandling="CallBack"
{/* ... */}
/>Vue
<DayPilotScheduler
rowHeaderColumnResizedHandling="CallBack"
<!-- ... -->
/>