Is there a way to set selected items or checked items in a multitask RadComboBox ?. I want to set the value for postback from the server.
I tried the following code, but this only works if it is not a multi-link RadComboBox.
Radbox1.SelectedValue = "123"
My front end code.
<telerik:RadComboBox ID="Radbox1" runat="server" CheckBoxes="true" EnableCheckAllItemsCheckBox="true" Width="300" Height="200" AutoPostBack="True" OnSelectedIndexChanged="Radbox1_SelectedIndexChanged" />
I have a value in Radbox1 that will be populated from the database.
Thanks Rahul
Rahul source share