How can i hide the save and delete button in the lighbox? I would like to have the calendar for viewing purpose only, tried to enable the IsReadOnly mode, but user can’t double click it to view the details. So, i was thinking to hide the save and delete button from users to edit but read only.
you can set ready only property in load
ex
scheduler.parse([
{ start_date:“2013-05-13 6:00”, end_date:“2009-05-13 8:00”, text:“Event 1”, readonly:true},
{ start_date:“2013-06-09 6:00”, end_date:“2009-06-09 8:00”, text:“Event 2”, readonly:true}
],“json”);