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.clientStateDefault 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