I have the following code in the ModalPopup Panel. The problem is that I can see checkbox but no item on the side. If I remove the checkbox control then the items are visible. Is it a bug or do I have to include anything else in my code.
<asp:Panel ID="pn1" runat="server" CssClass="popup" Width="1200px" Style="display: none;"> <div class="body"><telerik:RadComboBox runat="server" ID="RadComboBox1" ZIndex="10000000" HighlightTemplatedItems="true">
<Items>
<telerik:RadComboBoxItem Text="One" Value="One" />
<telerik:RadComboBoxItem Text="Two" Value="Two" />
<telerik:RadComboBoxItem Text="Three" Value="Three" />
</Items>
<ItemTemplate>
<asp:CheckBox runat="server" ID="CheckBox" onclick="stopPropagation(event);" Text="" />
<%
# DataBinder.Eval(Container, "Text") %> </ItemTemplate> </telerik:RadComboBox> </div> </asp:Panel>
Thanks.