2012-09-13 78 views
1

可能重複:
GWT Suggestbox with SmartgwtSmartGWT的重疊的SelectItem GWT DateBox

我有兩個GWT DateBoxes和一個SmartGWT的的SelectItem用於與PICKLIST的外觀的多個選擇。

的問題是,當點擊一個DateBox和DatePicker的顯示,它的背後是的SelectItem,如在此截圖:

編輯:由於我還沒有的10聲譽,我不能張貼圖像。因此,這裏是鏈接:

http://i.imgur.com/m6lg9.png

下面是對的SelectItem代碼:

selectItemFilterList.setTitle("Filter:"); 
    selectItemFilterList.setMultiple(true); 
    selectItemFilterList.setMultipleAppearance(MultipleAppearance.PICKLIST); 
    selectItemFilterList.setWidth(250);   
    ... values are set here ... 
    selectItemFilterList.setValueMap(valueMap); 

    DynamicForm filterForm = new DynamicForm(); 
    filterForm.setItems(selectItemFilterList); 
    filterForm.setStyleName(style.inline()); 
    addToFilterPanel(filterForm); 

我可以以某種方式解決這個問題?

+0

我嘗試添加CSS樣式到兩個DateBox並以1000001的z指數的DatePicker,如各種渠道建議,但這不適合我。 – devrys

+0

我得到它的工作,解決方案是設置DateBox Popup的Z索引。 – devrys

+0

您應該首先搜索這類問題。看看這個(http://stackoverflow.com/questions/8713770/gwt-suggestbox-with-smartgwt)。 – RAS

回答

2

要解決這個問題,我不得不設置DateBox 彈出窗口而不是DateBox或DatePicker的z索引!

添加以下到我的應用程序的CSS文件中的戰爭目錄後,一切都按預期工作:

.dateBoxPopup { 
     z-index: 1000001; 
    }