The rowHeaderColumnResizedHandling property (string) specifies the default handling of row header column width resize actions.
Declaration
DayPilot.Scheduler.rowHeaderColumnResizedHandlingPossible Values
"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.
Default Value
"Update"Notes
After the user resizes a row header column, the onRowHeaderColumnResized event fires and the resized rowHeaderColumns item is updated automatically.
Examples
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"
<!-- ... -->
/>See Also
DayPilot.Scheduler.onRowHeaderColumnResized
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot