disable edit in drag and drop, or disable week and day view

Hello,

any way to disable drag and drop edit (in week and day view) any one can change timing.

I try security but no luck

any idea?

You cant using SC options. You need custom code, you can copy the SC HTML code generated in the calendar and paste in a BLANK APP to make that changes. All that options are configurable in javascript.

You need to edit this js line to disable week and day and enable just “month”:


      header: {
        left: 'prev,next today',
        center: 'title',
         right: 'month'
      },

To disable drag and drop you need to change editable: true, to false


editable: false,

Where ?

[QUOTE=hirambq;16505]You cant using SC options. You need custom code, you can copy the SC HTML code generated in the calendar and paste in a BLANK APP to make that changes. All that options are configurable in javascript.

You need to edit this js line to disable week and day and enable just “month”:


      header: {
        left: 'prev,next today',
        center: 'title',
         right: 'month'
      },

To disable drag and drop you need to change editable: true, to false


editable: false,

[/QUOTE]

So where do we change this in the latest version ?

In the PHP file in can’t find editable: false,

I’ve tryed to change in the file located in C:\Program Files\NetMake\v7\wwwroot\scriptcase\prod hird\jquery_plugin\fullcalendar then recompile…nothing happens. The app behaviour is exactly the same.

and yes…I comment out the lines.

Thanks
JM

It’s very useful to me!Good stuff…

Hello hirambq,

Would you please advise the detail how to do it? Also, I have encountered the same problems like JMTM.

Would you please help?