Hi there,
When I click the delete button on an appointment the default popup dialog appears.
I set DisplayDeleteConfirmation="False" yet it still shows, how do I stop it from showing?
When I click the delete button on an appointment the default popup dialog appears.
I set DisplayDeleteConfirmation="False" yet it still shows, how do I stop it from showing?
<telerik:RadScheduler ID="RadScheduler1" runat="server" AllowDelete="True" |
AllowEdit="False" AllowInsert="False" Culture="English (South Africa)" |
DayEndTime="23:59:59" DayStartTime="00:00:00" Height="100%" Skin="Sunset" |
Width="728px" DataEndField="EndTime" DataKeyField="Row_ID" ShowHeader="True" |
ShowNavigationPane="false" ShowViewTabs="false" |
DataSourceID="dsScheduleData" DataStartField="StartTime" |
SelectedDate="2008-11-01" MonthView-UserSelectable="false" |
MonthView-ReadOnly="true" NumberOfHoveredRows="0" SelectedView="WeekView" |
ShowFooter="True" DisplayDeleteConfirmation="False" EnableDatePicker="false" |
DataSubjectField="Name" ShowAllDayRow="False" DataRecurrenceField="RecurrenceRule" |
DataRecurrenceParentKeyField="RecurrenceParentID"> |
<WeekView HeaderDateFormat="dd/MM" /> |
<AppointmentTemplate> |
<div style="color: #744b24;border: 1px solid #b7af8b;background: #cbaf76;width: 100%;height: 100%;"> |
<asp:Label ID="lblName" runat="server" Text='<%#Bind("Subject")%>' /> |
</div> |
</AppointmentTemplate> |
<MonthView ReadOnly="True" UserSelectable="False" /> |
</telerik:RadScheduler> |