Hi Team,
We have a requirement that when user filter items in dropdown list then we need to uncheck all.
there is no event in dropdownlist widgets for filtering so we are attaching a keyup event directly on filter text box and check if all items are checked then we call uncheckAll API.
Please have a look at jfiddle, http://jsfiddle.net/60xfwcce/
The problem we are facing that after calling uncheckAll, we loose the focus from filter text box and user has to click again in filter textbox.
To overcome from this problem we tried $(filterObj).focus() call after uncheckAll call but it does not work. If we put our focus call in setTimeOut function then it works but we loose some key entered by user in that case.
Do you have some solution for it?