Posted on: 4/2/2015 10:11:26 PM | Views : 663

Hi ,
I have a check box as below 
Dim rdCombobox = New RadComboBox rdCombobox.ID = "rdFourth" + Typecode Dim dt As DataTable = GetDropdownData(Typestr, 2) rdCombobox.DataSource = dt rdCombobox.DataTextField = "PEresult" rdCombobox.DataValueField = "ResultCode" rdCombobox.DataBind() rdCombobox.CheckBoxes = DropDownTreeCheckBoxes.TriState Cell.Controls.Add(rdCombobox) When I use it to check a single value I use this code : 
rdCombobox.Items.FindItemByValue(code).Selected = True if Code = 'abc' or 'xyz' etc I can find it. 
However if code is concatenated, for example Code = 'abc; xyz'. 
I can't find it. 
How can I deconcatenate the code 'abc; xyz' into multiple codes ...

Go to the complete details ...