Page 1 of 1

[ANGULAR] Disable context menu for readOnly events

Posted: Fri Jun 11, 2021 1:49 pm
by Andres

How can I disable context menu only for readOnly events?


Re: [ANGULAR] Disable context menu for readOnly events

Posted: Fri Jun 11, 2021 2:00 pm
by mats

Re: [ANGULAR] Disable context menu for readOnly events

Posted: Fri Jun 11, 2021 4:27 pm
by Andres
 features = {
    eventMenu : {
      processItems({ eventRecord }) {
        return !eventRecord.data.readonly;
      }
     }
    }

found, thnx.)