MouseUp
并且Mousedown
事件不适用于PopupPanel
in GWT
,但相同的代码适用于 in 中的普通视图GWT
。在上写鼠标事件之前我们需要做些什么。请GWT
PopupPanel
尽快指导我。
问问题
365 次
2 回答
0
我通过在包含 DateBox 小部件的弹出面板上调用“setModal(false)”为自己解决了这个问题。
于 2014-10-08T14:37:34.730 回答
0
popup.addMouseUpHandler(new MouseUpHandler()
{
public void onMouseUp(MouseUpEvent event)
{
popup.setPopupPositionAndShow(new PopupPanel.PositionCallback()
{
public void setPosition(int offsetWidth, int offsetHeight)
{
int left = (Window.getClientWidth() - offsetWidth) / 24;
int top = (Window.getClientHeight() - offsetHeight) / 5;
popup.setPopupPosition(left, top);
}
});
}
});
于 2014-03-25T11:01:02.650 回答