DayPilot.Scheduler.rowHeaderColumnResizedHandling

The rowHeaderColumnResizedHandling property (string) specifies the default handling of row header column width resize actions.

Declaration

DayPilot.Scheduler.rowHeaderColumnResizedHandling

Possible 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

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript