This bug is present in 3.5beta as well as in GitHub as of Jully 27th.
1. Put any two unrelated grids on the same page with all default navGrid options tunred on (common situation e.g. if using grid with jquery UI tabs)
2. On a second grid click on delete button without selecting a row
3. Close warning via cross icon on a modal dialog -> modal overlay stays in place, preventing further work
Preliminary investigation: hideModal() is called with options from the first grid, therefore /jQuery(“.jqgrid-overlay:first”,o.gb).hide();/ is hiding the wrong overlay, as o.gb is pointing to the first grid.
For now I changed this line to jQuery(“.jqgrid-overlay”).hide(); since in my situation no two overlays can be visible at the same time. It might not be true for many others.
Cancelling the dialog with edit form works flawlessly, but I couldn't see any easy way to re-use the closing behaviour.
Alex
P.S. Tony, you did amazing and very professional job! Thanks a lot for allowing my current project to even exist.
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top