Using lincenced Pro version of daypilot scheduler (8.3.3601), for asp.net, i' trying to change the cellWidth on the fly from javascript, not server-side. Looked into this example:
https://javascript.daypilot.org/sandbox/scheduler/cellwidth.html
however this doesnt seem to work. my code is:
function zoom() {
dps.cellWidth = 200;
dps.update();
}
on a button click that does not postback. However nothing happens. the scheduler does not seem to change at all. Are there any other settings that are affecting this?