DayPilot.Queue.update

The update() method updates and redraws the Queue component. Two update modes are supported:

1. You can make the changes by changing the properties directly:

dp.lineSpace = 5;
dp.update();

2. You can pass a set of changes using the options parameter:

dp.update({lineSpace: 5});

This method cannot be called after the component has been disposed using dispose(). In that case, an exception will be thrown.

Declaration

DayPilot.Calendar.update([options]);

Parameters

  • options - object with properties and events to be updated (object)

The options object can specify any of the standard properties and event handlers.

Special Properties

The following options properties have a special meaning:

  • events - specifies the events array (will be translated to events.list)