Search code examples
c#asp.nettelerikradcombobox

How to get all the values selected in a RadComboBox(multi-select drop-down) with check boxes on the server-side, asp.net?


I need to get all the values selected by user in multi-select(Check-Box) drop-down on the server side.


Solution

  • var collection = comboBox.CheckedItems;

    Where comboBox is the id of your RadCombobox