我现在正在尝试几个小时在 smartGWT 中移动我的对话框,但没有运气。
这是我的代码:
Dialog dlg = new Dialog();
ListGridRecord[] h = scoringGrid.getRecords();
HLayout chart = new HLayout();
vlayout.addMember(chart);
dlg.addMember(highChart(h));
dlg.moveBy(500, 900);
dlg.setHeight("400px");
dlg.setWidth("700px");
dlg.show();
我也试过:setLeft, setTop, setRect,
没有任何效果。
我的对话框总是显示在同一个位置。
有任何想法吗?