How to disable the event in kendo UI scheduler?I study the example from the official website examples,and see all of the cell in event have double click event to create and delete and other events,but now I just use it to show the result,so how to prevent all the create,delete,edit events?
相关问题
- Foreign key column sorting
- Kendo UI bind drop down value from PopupEditor
- Kendo mvc grid InLine Edit Mode DateTimePicker Tem
- How to change color of row based on particular col
- Kendo UI for MVC Grid How do I hide the ID column
相关文章
- Kendo Ui Dropdownlist Set Visible via Javascript
- How to change view date dynamically (which is filt
- Kendo DropDownList Shows DataValueField Prior to D
- Kendo UI Datasource - Filter on releated data
- Kendo UI Grid Refesh on Dropdown Selection
- How to bind kendo mvc ui dropdownlist dynamically
- KendoUI integration into Durandal JS
- How to make a Pie Chart Aggregate the Data Source?
Using editable is fine if what you want applies to every event on the scheduler.
However, if you want specific events to be read only, then handle the edit event, and hide the appropriate buttons (isReadOnly would be a field you added to the schema):
Use the
editable
configuration option:or if you're using the MVC wrappers:
If you want to disable specific events, see this answer.