mleibman / SlickGrid

A lightning fast JavaScript grid/spreadsheet
http://wiki.github.com/mleibman/SlickGrid
MIT License
6.81k stars 1.98k forks source link

z-index issue when displaying the grid as a popup #485

Open slorion opened 11 years ago

slorion commented 11 years ago

(in slick.grid.css)

.slick-cell.editable { z-index: 11; ... }

A z-index value of 11 is too small if displaying the grid inside a popup via jQuery UI .dialog(). It must be over 1000.

jasonxz commented 11 years ago

Using auto in the z-index works, as well.

jhrabows commented 11 years ago

One should mention that, as a result, an editable grid appears to be non-editable (since this z-index of the editor cell is lower than that of the dialog-overlay).