DayPilot.Calendar.columnMoveHandling

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

Available in the calendar component since version 2022.3.5381.

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", {
  columnMoveHandling: "Update",
  // ..

});

calendar.init();