I'm trying to utilize the RadScheduler component from Telerik for a public facing website, and do not want a user to be able to edit the details of the events on the calendar, but would like them to be able to double click on the event to see the details.
How is this achieved?
Here is my current code for the scheduler:
<telerik:RadScheduler ID="RadScheduler1" runat="server" AllowDelete="False"
AllowEdit="True" AllowInsert="False" Skin="Vista" OnDataBound="RadScheduler1_DataBound"
OnInit="RadScheduler1_Init" HoursPanelTimeFormat="htt" ValidationGroup="RadScheduler1"
Height="600px" SelectedView="MonthView" Width="100%" ProviderName="XmlSchedulerProvider1">
<Localization AdvancedAllDayEvent="All day"></Localization>
<AdvancedForm DateFormat="M/d/yyyy" TimeFormat="h:mm tt" Modal="True"></AdvancedForm>
<TimelineView UserSelectable="False" />
<DayView UserSelectable="False" ReadOnly="True" />
</telerik:RadScheduler>
I've found that setting AllowEdit="False" prevents the entire modal from coming up with the event details.