Hello,
I am using the new iginte UI 2016.2 version of the igPopOver.The z-index of the behind "overlay" is set higher than the actual "popover" container when an animation option is set with the version of Jquery-UI is 1.12.0
If I initialize the popover with either the openAnimation or the close Animation option, the popover is behind the overlay, as i cannot close or interaction with any buttons in the popover.
If i either remove the "animation" options or change my jquery-ui to version 1.11.x, all seems well.
Attached is an example
Hello Ben,
We've logged an internal issue with Development ID 230989 to investigate this behavior.
Until it is fixed you can use a workaround - set the overlay's position to initial via css. For example:
<style>.ui-igdialog-overlay { position: initial !important;} </style>
Regards,Ivaylo HubenovEntry-level developer
Hello Ivaylo,
I added the position CSS setment.
It does not seem to work, unless i am doing something wrong.
See the updated script.
I am sorry I forgot the fact, that IE does not support "initial" position. Setting the position to "static" fixes the problem.
<style> .ui-igdialog-overlay { position: static !important; }</style>
Please let me know if you have any problems after this change.
Thank you.
The static positioning corrected the overlay problem.