Hi
We are looking to use scheduler to only display information.
Can we limit functionality: just show details on event click and prevent user from editing?
Regards
Hi
We are looking to use scheduler to only display information.
Can we limit functionality: just show details on event click and prevent user from editing?
Regards
You can
a) replace default lightbox with custom html view which will show info in readonly state
samples\02_customization\16_custom_form.html
b) you can use readonly extension for the scheduler
samples\03_extensions\14_readonly_event.html
Thanks.
Read-only event (var B) is fine but unfortunately I have js exception on form load in IE7.
This is the browser used accoss our department.
Regards
Kirill
And another question.
How to do the same with c# code?
Kirill
Hi,
in c# you can enable this extension following way:
Scheduler.Extensions.Add(SchedulerExtensions.Extension.Readonly);
To make all events readonly, client-side config is required[code]<%= Scheduler.Render() %>
Or you can add boolean ‘readonly’ property to the data objects, to do it only for some of events
public bool @readonly { get; set; }
Try updating scheduler’s codebase, this bug should be fixed now.
The latest version of the component is available at scheduler-net.com