GWT日期选择器滚动问题

时间:2012-08-29 14:15:42

标签: css gwt

我在我的网页中使用GWT datepicker。当我在页面的bottem中添加它时 行为非常不正常,如快照所示。

我尝试使用z-index和一些已知的css属性。但我没有从digg中出来。 任何其他css或日期选择器属性将解决这个问题??

enter image description here

1 个答案:

答案 0 :(得分:0)

enter image description here我得到了这个

的解决方案
dateIcon.addClickHandler(new ClickHandler() 
    {
        @Override
        public void onClick(ClickEvent event) 
        {
            int left = dateIcon.getAbsoluteLeft() + 30;
            int top = dateIcon.getAbsoluteTop() + 10;
            if(dateIcon.getAbsoluteTop()+400>Window.getClientHeight()){
                top = dateIcon.getAbsoluteTop()-200; 
            }
            popUp.setPopupPosition(left, top);
            if (isControlEnabled()) 
        ![enter image description here][2]  {
                popUp.show();
            } else 
            {
                popUp.hide();
            }
        }
    });