Completed
Last Updated: 16 Jul 2015 08:40 by Ashraf
ADMIN
Viktor Tachev
Created on: 07 Jan 2014 13:50
Category: Grid
Type: Bug Report
0
In RadGrid Filter menu popup moves to top left of the page when enter key is pressed after clicking the filter button

		
1 comment
Ashraf
Posted on: 07 Jan 2014 18:32
I used  FilterMenu-OnClientShown event in rad grid and in the client function I set focus on the current selected li element  and the issue  resolved .
The code :
 FilterMenu-OnClientShown="FilterMenu_OnClientShown"

 function FilterMenu_OnClientShown(sender, eventArgs) {
                //$('.rmFocused').focus();
                $(sender._childListElement).find('.rmFocused').focus();//to maker get the selected li 
            }