Custom Query (7259 matches)
Results (1 - 3 of 7259)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#4452 | wontfix | zindex option when calling the date picker | ||
Description |
The problem I am having is that the date picker widget opens underneath the UI Dialog and I could not find any options to set the Z-Index of the date picker so that I could specify it. I am not specifying a zindex in my dialog options. I ended up fixing this in my css file as I was able to give the data picker widget a z-index. A nice enhancement would be to allow for an zindex option when calling the date picker. |
|||
#5110 | fixed | zIndex() only checks inline style, and ignores CSS | ||
Description |
zIndex() uses elem.style to test for the z-index style on each element as it traverses up the tree. Using css() makes more sense, since this will get effective style including z-index applied via CSS. |
|||
#6163 | worksforme | zIndex() is not a function | ||
Description |
Found related ticket: #5948 In th code of the dialog "plugin" downloaded on 2010-10-06, I just found a bug at ligne 391: Insted of using function(d){if(c(d.target).zIndex()<c.ui.dialog.overlay.maxZ) you should be using function(d){if(c(d.target).css("zindex")<c.ui.dialog.overlay.maxZ) |