SmartGWT SelectItem重叠GWT DateBox

时间:2012-09-13 12:24:21

标签: css gwt z-index smartgwt datebox

  

可能重复:
  GWT Suggestbox with Smartgwt

我有两个GWT DateBox和一个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);

我能以某种方式解决这个问题吗?

1 个答案:

答案 0 :(得分:2)

要解决此问题,我必须设置DateBox 弹出窗口的z-index而不是DateBox或DatePicker!

将以下内容添加到war目录中我的应用程序的css文件后,一切都按预期工作:

    .dateBoxPopup {
        z-index: 1000001;
    }