the reason why I need "original" layout like documentation, because with dropdown recurrence selector, recurrence rule always use HOURLY frequency, event I already clear that drop down and fill it just with DAILY, WEEKLY and MONTHLY
RadDropDownList recurrenceAppointmentDropDwon = (RadDropDownList) recurrenceEditor?.FindControl("RecurrentAppointmentDropDown");
if (recurrenceAppointmentDropDwon != null)
{
recurrenceAppointmentDropDwon.Items.Clear();
recurrenceAppointmentDropDwon.Items.Add(new DropDownListItem(RecurrenceFrequency.None.ToString(),RecurrenceFrequency.None.ToString()));
recurrenceAppointmentDropDwon.Items.Add(new DropDownListItem(RecurrenceFrequency.Daily.ToString(), RecurrenceFrequency.Daily.ToString()));
recurrenceAppointmentDropDwon.Items.Add(new DropDownListItem(RecurrenceFrequency.Weekly.ToString(), RecurrenceFrequency.Weekly.ToString()));
recurrenceAppointmentDropDwon.Items.Add(new DropDownListItem(RecurrenceFrequency.Monthly.ToString(), RecurrenceFrequency.Monthly.ToString()));
}
when I create recurrent appointment with daily frequency, recurrence rule created with hourly frequency
How can I fix this?