Hello,
How can I get a drop-down panel like the following that appears in the telerik examples.
<qsf:ConfiguratorPanel runat="server" ID="ConfigurationPanel1" Title="Configuration" Orientation="Vertical" Expanded="true">
<strong>Select Panelbar Expand Mode:</strong>
<hr />
<asp:RadioButtonList ID="RadioButtonList1" runat="server" AutoPostBack="True" OnSelectedIndexChanged="RadioButtonList1_SelectedIndexChanged">
<asp:ListItem Value="MultipleExpandedItems" Selected="True">Multiple Expanded Items</asp:ListItem>
<asp:ListItem Value="SingleExpandedItem">Single Expanded Item</asp:ListItem>
<asp:ListItem Value="FullExpandedItem">Full Expanded Item</asp:ListItem>
</asp:RadioButtonList>
</qsf:ConfiguratorPanel>
How can I get a drop-down panel like the following that appears in the telerik examples.
<qsf:ConfiguratorPanel runat="server" ID="ConfigurationPanel1" Title="Configuration" Orientation="Vertical" Expanded="true">
<strong>Select Panelbar Expand Mode:</strong>
<hr />
<asp:RadioButtonList ID="RadioButtonList1" runat="server" AutoPostBack="True" OnSelectedIndexChanged="RadioButtonList1_SelectedIndexChanged">
<asp:ListItem Value="MultipleExpandedItems" Selected="True">Multiple Expanded Items</asp:ListItem>
<asp:ListItem Value="SingleExpandedItem">Single Expanded Item</asp:ListItem>
<asp:ListItem Value="FullExpandedItem">Full Expanded Item</asp:ListItem>
</asp:RadioButtonList>
</qsf:ConfiguratorPanel>