Hello All,
Just started playing around with the controls and they are great! I'm having one small issue where I have a radcombo box with radiobuttons.
If I select an item in the combo box under firefox it works fine. If I select an item under IE it does not work. Autopostback is set to true. And I have the RadAjaxmanger enabled for the combo box.
Any ideas?
Just started playing around with the controls and they are great! I'm having one small issue where I have a radcombo box with radiobuttons.
If I select an item in the combo box under firefox it works fine. If I select an item under IE it does not work. Autopostback is set to true. And I have the RadAjaxmanger enabled for the combo box.
Any ideas?
| protected void RadioButtonList1_SelectedIndexChanged1(object sender, EventArgs e) |
| { |
| RadioButtonList radiodayweek = (RadioButtonList)RadComboBox2.SelectedItem.FindControl("RadioButtonList1"); |
| Profile.Chartdayweek = radiodayweek.SelectedValue.ToLower(); |
| Label1.Text = Profile.Chartdayweek; |
| } |
| <telerik:RadComboBox ID="RadComboBox2" Runat="server" Skin="Sunset" |
| Width="385px" AutoPostBack="True"> |
| <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> |
| <ItemTemplate> |
| Select Day or Week<asp:RadioButtonList ID="RadioButtonList1" runat="server" |
| AutoPostBack="True" Height="27px" |
| onselectedindexchanged="RadioButtonList1_SelectedIndexChanged1" |
| RepeatDirection="Horizontal" Width="221px"> |
| <asp:ListItem Selected="True">Day</asp:ListItem> |
| <asp:ListItem>Week</asp:ListItem> |
| </asp:RadioButtonList> |
| <br /> |
| Select Chart Type<br /> |
| <asp:RadioButtonList ID="RadioButtonList2" runat="server" AutoPostBack="True" |
| Height="26px" onselectedindexchanged="RadioButtonList2_SelectedIndexChanged" |
| RepeatDirection="Horizontal" Width="224px"> |
| <asp:ListItem Selected="True">Bar</asp:ListItem> |
| <asp:ListItem>Line</asp:ListItem> |
| <asp:ListItem>Spline</asp:ListItem> |
| </asp:RadioButtonList> |
| </ItemTemplate> |
| <Items> |
| <telerik:RadComboBoxItem /> |
| </Items> |
| </telerik:RadComboBox> |