Reputation: 259
In my GWT-Application I have a Custom-Table with a DatePicker-Column. Now I have to set the z-index for the Popup. I did this in my form with:
.dateBoxPopup {
z-index:5000;
}
Is there an equivalent for the Cell-Popup like .DatePickerCellPopup?
Upvotes: 0
Views: 1322
Reputation: 11
Unfortunately .dateBoxPopup is not applied to the popup of DatePickerCell. Therefore, you need a z-index rule for .gwt-PopupPanel{ z-index: 15000 }
Upvotes: 1
Reputation: 17489
Are you refering to the DatePickerCell in the CellWidgets?
In case you are: The DatePickerCell uses a DatePicker and the DatePicker
uses following CSS classes for styling (use Firebug to check them):
You have to specify these css classes with the @external tag to suppress selector obfuscation
Upvotes: 3