Hi,
I have several WebDropDowns on a page with EnableMultipleSelection=true. If a user selects several items and then moves to the next page and hits the browser back button these selected items are lost. Can you tell me if there is an easy way of keeping these items selected? I am using Infragistics version 12.2.
Thanks
Hello,
One possible approach to implement the functionality you described is to store the selected item index in hidden field when redirecting to another page. On window.onload you can check the value of the hidden field and set the selected index based on hidden field value.
var dro = $find("WebDropDown1"); //Where value is stored value
dro.selectItemByIndex(val, true, true);
I hope this helps.
I am just following up to see if you need any further assistance with this matter.
Thanks Bhadresh, I will implement this solution. I was just hoping the controls had a property I could set to perform this functionality.