Can somone please show me an example of how can I hide the all day check box in Rad Scheduler.
I believe i found the problem
thanks
I believe i found the problem
| protected void RadScheduler1_FormCreated(object sender, SchedulerFormCreatedEventArgs e) |
| { |
| if ((e.Container.Mode == SchedulerFormMode.AdvancedEdit) || (e.Container.Mode == SchedulerFormMode.AdvancedInsert)) |
| { |
| CheckBox allDayCheckBox = (CheckBox)e.Container.FindControl("AllDayEvent"); |
| allDayCheckBox.Visible = false; |
| TextBox subjectTextBox = (TextBox)e.Container.FindControl("Subject"); |
| subjectTextBox.Visible = false; |
| } |
| } |
thanks