我在我的网页中使用 GWT datepicker。当我在页面底部添加时,它的行为非常异常,如快照所示。
我尝试使用 z-index 和一些已知的 css 属性。但我没有从 digg 中出来。任何其他 css 或日期选择器属性都可以解决这个问题?
我得到了解决方案
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();
}
}
});