Hi there.
I am trying to manually insert an item into the dataset for a RadComboBox as shown below:
cbProviders.Items.Insert(0,
new RadComboBoxItem(CurrentUser.CompanyName, CurrentUser.OperatorId.ToString() + "-" + EvaluationOwnerType.Operator.GetHashCode().ToString()));
My problem is that the item is really an ASP:CheckBox inside of an ItemTemplate as shown:
<ItemTemplate>
<asp:CheckBox runat="server" ID="CheckBox" onclick="checkboxClick();" Text='<%# DataBinder.Eval(Container, "Text") %>'/>
</ItemTemplate>
I am not sure how to accomplish this. Currently, the checkboix shows, but not the associated text. Any help would be appreciated.
Thanks, Mike