how can I programmatically build an item template for a radcombobox with a checkbox?
| <telerik:RadComboBox ID="cmbOfficeMultiple" runat="server"> |
| <ItemTemplate> |
| <asp:CheckBox runat="server" ID="chkListValues" /> <%#Eval("ListValueName")%> |
| </ItemTemplate> |
| </telerik:RadComboBox> |
I want to start with this in the code in front, but add the itemtemplate in the codebehind. How is that done?
| <telerik:RadComboBox ID="cmbOfficeMultiple" runat="server"> |
| </telerik:RadComboBox> |
Thanks!