I need to position the showhidecolumns and other modal notifications to the top of the screen instead of center, as I have a lot of records on screen and do not want the user to have to scroll down.
I used:
$grid[“form”][“position”] = “all”;
And that works for ad, edit, search, however notifications and column selector are still centred…
Can you help?
1 Answers
Instead of above, you can have this JS code that will reset dialog centering function.
jQuery.fn.abscenter = function () {};
jQuery.fn.fixedcenter = function () {};
It should remove the center positioning logic all together and make all dialogs on left-top.
You can put it in an script tag before body closing tag.
Your Answer