zIndex failure in multiple dialogs
I use two dialogs the first using the second
- unionDialog = $("#setUnion").dialog({
- autoOpen: true,
- /* modal: true, */
- zIndex: 500,
- position: [75, 50],
- width: 750,
- });
- Calendrier = $('#calendrierGeneral').dialog({
- autoOpen: true,
- /*modal: true,*/
- width: 450,
- zIndex: 1000,
- });
In fact the first (actually called for some reasons after the second) opens with z-ndex = 1002 and the second with z-index = 1001.
Then the first masks the second ( even more absolutely with "modal = true" )
Notice than my "zIndex" is not zindex
How can I fix z-index ?