DayPilot.Calendar.columnResizeHandling

The columnResizeHandling property (string) enables drag and drop resizing of calendar columns (in the resource calendar mode).

Available in the calendar component since version 2022.3.5377.

Possible values

  • "Disabled" - event resizing is not allowed
  • "Update" - updates the event position on the client side

Default Value

"Disabled"

Example

const calendar = new DayPilot.Calendar("calendar", {
  columnResizeHandling: "Update",
  // ..

});

calendar.init();