I have a Repeater object on my page. In the Repeater ItemTemplate, I have the following RadComboBox
<
telerik:RadComboBox
ID
=
"rcboList"
CheckBoxes
=
"true"
EnableCheckAllItemsCheckBox
=
"true"
runat
=
"server"
/>
When this portion of my page is loaded, contents are dynamically loaded to the above combo box, depending on certain criteria. To further clarify, for each item in the repeater, the contents within rcboList are different.
All though the contents are different, each repeated RadComboBox should behave the same, with a CheckBox beside each item. I can populate my lists and I see these check boxes without issue, however, when my user clicks the button to return the data to the server, there is no data in rcboList.CheckedItems. I figured I tried to iterate over the RadComboBox.Items collection and see if I could get the values from their.
Interestingly, only the first item in the list is marked as selected, but none of the items are marked as checked.
Can I use the RadComboBox this way in an asp:Repeater, or is this simply not possible?
Thank you.