DayPilot.Scheduler.onRowHeaderColumnResized

This event is fired after the row header column width has been adjusted by a user.

Declaration

DayPilot.Scheduler.onRowHeaderColumnResized(args);

Parameters

Note

The column width specified using the rowHeaderColumns array is updated automatically.

See Also

Example

dp.onRowHeaderColumnResized = function(args) {
  console.log("New column width: " + args.column.width);
  console.log("All widths: " + dp.rowHeaderColumns.map(function(column) { return column.width; }).join("|"));
};