Hello,
Is it possible to change the z-index of the form when adding or editing a record?
Currently the form remains behind my global menu…
Thanks,
Ced
7 Answers
You can try setting the z-index by inspecting and setting onpage css.
ui-jqdialog { z-index: 1000 !important; }
You can simply add it anywhere after including the CSS files.
<style> .ui-jqdialog { z-index: 1000 !important; } </style>
You can test first if this works onpage. After that you can edit:
lib/js/jqgrid/css/ui.jqgrid.css file and append it at the last line.
that’s not working, tried everything but my menu keep staying above the dialog form….
Your Answer