I've created a Kendo Scheduler that binds to a remote data source. The remote datasource is actually a combination of two separate data sources. This part is working okay.
Question is... is there any way to prevent certain events from being destroyed?
I've stopped other forms of editing by checking a certain field in the event's properties and calling e.preventDefault()
on the edit
, moveStart
and resizeStart
events if it should be read-only. This works fine, but I can't prevent deletes.
Any suggestions greatly appreciated.