在我的GWT-應用程序中,我有一個帶有DatePicker-Column的自定義表格。現在我必須爲Popup設置z-index。我是這樣做的:GWT中DatePicker-Cell-Popup的CSS
.dateBoxPopup {
z-index:5000;
}
是否有類似於.DatePickerCellPopup的Cell-Popup?
在我的GWT-應用程序中,我有一個帶有DatePicker-Column的自定義表格。現在我必須爲Popup設置z-index。我是這樣做的:GWT中DatePicker-Cell-Popup的CSS
.dateBoxPopup {
z-index:5000;
}
是否有類似於.DatePickerCellPopup的Cell-Popup?
您是否在引用CellWidgets中的DatePickerCell?
如果你是:DatePickerCell使用DatePicker和下面的CSS類樣式的DatePicker
用途(使用Firebug進行檢查):
您必須指定這些帶有@external標記的css類來抑制選擇器模糊處理
不幸的是.dateBoxPopup不適用於t他彈出DatePickerCell。因此,您需要一個Z索引規則爲.gwt-PopupPanel{ z-index: 15000 }
謝謝您的答案,但它不能解決我的問題。我有一個main.css和一個Table.css與'.dateBoxPopup { \t z-index:2000; } .gwt-DatePicker { border:1px solid #ccc; border-top:1px solid#999;光標:默認; 光標:默認; z-index:5000; }' – bembii 2011-12-30 16:39:21
@tobvio:我建議使用Firebug或Chrome的開發者工具(檢查元素)來檢查實際的CSS。 – 2011-12-30 17:18:38