skoya
10-23-2013, 02:40 PM
Hi , we have an application where we use smartclient components to display data in Grids. On top of all the grids we have a topLevel horizontal menu and subMenus within each menu. we are using ddSmoothMenu (hover) to display the submenus and upon clicking any option we make a server call and update the grids . Now the issue we see in IE is upon clicking the subMenu the server Call is made and while updating the grid the focus is shifting to the grid and the subMenu is disappearing though the mouse is on the subMenu. We have to hover again on the Menu for the subMenu to appear and make a new selection.
One option we tried was to do jquery mouseOver on the menu where we hovered (trying to programatically hover after the grid is updated), but the subMenu did not dropdown.
$('#periodGroupSearchCmpFilter').mouseout();
$('#periodGroupSearchCmpFilter').mouseover();
this issue does not happen in Chrome. But since majority of our users use IE we have to fix the issue. Can any one please provide a suggestion on how we could solve the issue ?
One option we tried was to do jquery mouseOver on the menu where we hovered (trying to programatically hover after the grid is updated), but the subMenu did not dropdown.
$('#periodGroupSearchCmpFilter').mouseout();
$('#periodGroupSearchCmpFilter').mouseover();
this issue does not happen in Chrome. But since majority of our users use IE we have to fix the issue. Can any one please provide a suggestion on how we could solve the issue ?