DayPilot.Month.clientState

The clientState property (object) stores custom data that will be serialized and sent to the server with every CallBack request.

Only applicable to ASP.NET WebForms, ASP.NET MVC, and Java versions.

Declaration

DayPilot.Month.clientState

Default Value

{}

Notes

On the server side, the serialized data is available as the ClientState property.

Examples

JavaScript

const month = new DayPilot.Month("dp", {
  // ...
});
month.init();

month.clientState.filter = 'my filter';

See Also

ClientState [doc.daypilot.org]

DayPilot.Month Class