Is it possible to have a combobox that drops down with custom content that doesn't bind to anything? I have two rows of option buttons that i need to show when dropping down the combo. I don't see how I could use binding to this as there would be two items side by side. I tried just putting the rows of combos in the itemtemplate but nothing shows up when expanding the combo. Is there a way to do this or perhaps a better method i should be using?
<telerik:RadComboBox ID="RadComboBox2" Width="180px" Height="400px" AllowCustomText="true" Skin="Vista"
EmptyMessage="Nada" runat="server">
<ItemTemplate>
<div style="width: 180px; height: 400px">
<div style="width: 95px; float: left; line-height: 22px;">
<asp:RadioButton ID="rbtnToday" Text="Today" GroupName="DateFilter" runat="server"
AutoPostBack="false" CssClass="radioButton" Checked="true" /><br />
<asp:RadioButton ID="rbtnLast7Days" Text="Last 7 Days" GroupName="DateFilter" runat="server"
AutoPostBack="false" CssClass="radioButton" /><br />
<asp:RadioButton ID="rbtnThisMonth" Text="This Month" GroupName="DateFilter" runat="server"
AutoPostBack="false" CssClass="radioButton" /><br />
<asp:RadioButton ID="rbtnThisYear" Text="This Year" GroupName="DateFilter" runat="server"
AutoPostBack="false" CssClass="radioButton" /><br />
</div>
<div style="width: 85px; float: left; line-height: 22px;">
<asp:RadioButton ID="rbtnYesterday" Text="Yesterday" GroupName="DateFilter" runat="server"
AutoPostBack="false" CssClass="radioButton" /><br />
<asp:RadioButton ID="rbtnLast30Days" Text="Last 30 Days" GroupName="DateFilter" runat="server"
AutoPostBack="false" CssClass="radioButton" /><br />
<asp:RadioButton ID="rbtnLastMonth" Text="Last Month" GroupName="DateFilter" runat="server"
AutoPostBack="false" CssClass="radioButton" /><br />
<asp:RadioButton ID="rbtnAllTime" Text="All Time" GroupName="DateFilter" runat="server"
AutoPostBack="false" CssClass="radioButton" /><br />
</div>
</div>
</ItemTemplate>
</telerik:RadComboBox>
<telerik:RadComboBox ID="RadComboBox2" Width="180px" Height="400px" AllowCustomText="true" Skin="Vista"
EmptyMessage="Nada" runat="server">
<ItemTemplate>
<div style="width: 180px; height: 400px">
<div style="width: 95px; float: left; line-height: 22px;">
<asp:RadioButton ID="rbtnToday" Text="Today" GroupName="DateFilter" runat="server"
AutoPostBack="false" CssClass="radioButton" Checked="true" /><br />
<asp:RadioButton ID="rbtnLast7Days" Text="Last 7 Days" GroupName="DateFilter" runat="server"
AutoPostBack="false" CssClass="radioButton" /><br />
<asp:RadioButton ID="rbtnThisMonth" Text="This Month" GroupName="DateFilter" runat="server"
AutoPostBack="false" CssClass="radioButton" /><br />
<asp:RadioButton ID="rbtnThisYear" Text="This Year" GroupName="DateFilter" runat="server"
AutoPostBack="false" CssClass="radioButton" /><br />
</div>
<div style="width: 85px; float: left; line-height: 22px;">
<asp:RadioButton ID="rbtnYesterday" Text="Yesterday" GroupName="DateFilter" runat="server"
AutoPostBack="false" CssClass="radioButton" /><br />
<asp:RadioButton ID="rbtnLast30Days" Text="Last 30 Days" GroupName="DateFilter" runat="server"
AutoPostBack="false" CssClass="radioButton" /><br />
<asp:RadioButton ID="rbtnLastMonth" Text="Last Month" GroupName="DateFilter" runat="server"
AutoPostBack="false" CssClass="radioButton" /><br />
<asp:RadioButton ID="rbtnAllTime" Text="All Time" GroupName="DateFilter" runat="server"
AutoPostBack="false" CssClass="radioButton" /><br />
</div>
</div>
</ItemTemplate>
</telerik:RadComboBox>