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