Hello,
in my ASP.NET WebForms page I have several RadComboBox like this:
<
telerik:RadComboBox
ID
=
"radComboBoxFormat"
EmptyMessage
=
"Format"
MarkFirstMatch
=
"true"
Width
=
"100%"
runat
=
"server"
CheckBoxes
=
"true"
DataTextField
=
"Description"
DataValueField
=
"Code"
>
</
telerik:RadComboBox
>
Now I'd like to write a method that iterates through selected items
and compose a List<string>, or a comme separated value long string,
of the item's selected code, but one only method valid for all
RadComboBox of the page (for not having duplicated code).
How can I achieve this?
Thanks a lot in advance.
Luigi