Hi,
I have followed the example from here (http://www.telerik.com/community/code-library/aspnet-ajax/combobox/radcombobox-advanced-multiple-selection.aspx) and although the checkboxes are displayed and allow multiple selections, my combobox text is now empty.
I am manually binding the combobox using the following:
This is getting called in PageLoad. If I take out the Item Template it displays all my entries fine, but obviously without the checkbox. Do I need to do something different in this scenario?
David Penny
I have followed the example from here (http://www.telerik.com/community/code-library/aspnet-ajax/combobox/radcombobox-advanced-multiple-selection.aspx) and although the checkboxes are displayed and allow multiple selections, my combobox text is now empty.
I am manually binding the combobox using the following:
Dim dt As DataTable |
dt = ListProjects() |
cbox.Items.Clear() |
For Each row As DataRow In dt.Rows |
Dim item As New RadComboBoxItem() |
item.Text = row("Name").ToString |
item.Value = row("ID").ToString |
cbox.Items.Add(item) |
Next |
This is getting called in PageLoad. If I take out the Item Template it displays all my entries fine, but obviously without the checkbox. Do I need to do something different in this scenario?
David Penny