<telerik:RadFileExplorer ID="RadFileExplorer1" runat="server" OnClientItemSelected="OnImageSelected" EnableCopy="true" EnableAsyncUpload="true" >
<Configuration MaxUploadFileSize="20480000" />
</telerik:RadFileExplorer>
Hi,
I am using RadListBox in one of our page, I can able to retrieve multiple selection info and save it to destination place, and when users open the form again, I need to get previous selections(multiple values) and set it to RadListBox, it only showing last value not other selection. I am calling the following method for setting values.
private
void setRadListBoxSelection(Telerik.Web.UI.RadListBox ctl, string val)
{
string[] selArr = val.Split('@');
foreach (string word in selArr)
{
ctl.SelectedValue = word;
// ctl.SelectedItem.Value = word;
}
}
do you have any suggestions for fixing the above issue.
Satya