Posted on: 4/3/2015 6:55:12 PM | Views : 585

Hi, 
I have a checkbox, but when I select 2 or 3 items, 
the value 
rdCombobox.DataTextField = "TYPEresult" is always equal to the first value checked.
Here's the combobox
Dim rdCombobox = New RadComboBox rdCombobox.ID = "rdFourth" + Typecode Dim dt As DataTable = GetDropdownData(Typestr, 1) rdCombobox.DataSource = dt rdCombobox.DataTextField = "TYPEresult" rdCombobox.DataValueField = "TypeResultCode" rdCombobox.DataBind() rdCombobox.CheckBoxes = DropDownTreeCheckBoxes.TriState Cell.Controls.Add(rdCombobox) How can I get the the text of all the value checked sperated by (a new empty line) ? 
Thanks

Go to the complete details ...