Our pure JavaScript Scheduler component


Post by plus »

bryntumscheduler_toolbar_radonly.png
bryntumscheduler_toolbar_radonly.png (41.58 KiB) Viewed 340 times

Hi, I have a question.
I change readOnly value of scheduler at runtime.
I used scheduler toolbar with those functions

  1. Zoom level
  2. <Yesterday|Today|Tomorrow>
  3. Show as entire day
  4. Find task
  5. Highlight task

My problem is that when scheduler is readonly, functions 3,4,5 are disabled
How can I enable this functions when scheduler is readonly


Post by plus »

I solved this

before
this.resourcesScheduler.readOnly = readOnly;
after
this.resourcesScheduler.readOnly = readOnly;
this.resourcesScheduler.tbar.readOnly = false;


Post Reply