Our pure JavaScript Scheduler component


Post by Andres »

How can I disable context menu only for readOnly events?


Post by mats »


Post by Andres »

 features = {
    eventMenu : {
      processItems({ eventRecord }) {
        return !eventRecord.data.readonly;
      }
     }
    }

found, thnx.)


Post Reply