Hello,
I have 2 questions about the radScheduler :
- First, I would like to disable the link to the dayView in the number of the day (in the month view). How can I do that ?
I tried <DayView UserSelectable="False" /> and <telerik:RadScheduler DayView-UserSelectable="false"... but there are no effects.
- Then, I use InlineInsertTemplate to customize the template to add an appointment.
I add some RadComboBox and I would like to change some properties of the second RadComboBox when I select a value in the first RadComboBox.
I tried this code but my RadComboBox is null.
protected void RadComboBox1_SelectedIndexChanged(object sender, RadComboBoxSelectedIndexChangedEventArgs e)
{
String code = e.Value;
RadComboBox RadComboBox2 = (RadComboBox)RadScheduler1.FindControl("RadComboBox2"); // return null
}
Can you help me ?
thanks
I have 2 questions about the radScheduler :
- First, I would like to disable the link to the dayView in the number of the day (in the month view). How can I do that ?
I tried <DayView UserSelectable="False" /> and <telerik:RadScheduler DayView-UserSelectable="false"... but there are no effects.
- Then, I use InlineInsertTemplate to customize the template to add an appointment.
I add some RadComboBox and I would like to change some properties of the second RadComboBox when I select a value in the first RadComboBox.
I tried this code but my RadComboBox is null.
protected void RadComboBox1_SelectedIndexChanged(object sender, RadComboBoxSelectedIndexChangedEventArgs e)
{
String code = e.Value;
RadComboBox RadComboBox2 = (RadComboBox)RadScheduler1.FindControl("RadComboBox2"); // return null
}
Can you help me ?
thanks