Set CellWidth with a callback
I have buttons to zoom in and out of the DayPilotScheduler control on my page. I am trying to increase or decrease the CellWidth through a callback (handled by ComponentArt's callback control). The zoom in and zoom out functions are executed but the scheduler does not update. What could I be doing wrong? Here's the function that I call -
//called by the callback handler
private void zoomIn() {
Scheduler. CellWidth = 60;
Scheduler.DataSource = CreateEventsTable();
Scheduler.DataBind();
Scheduler.Update();
}
Thanks,
Satyendra Sharma.
Asked by Satyendra Sharma 4 years ago.