GWT htmlDialogBox:如何将大小设置为更宽的宽度

时间:2016-05-25 07:37:43

标签: gwt

我想将htmlDialogBox调整为更宽的宽度。这就是我现在拥有的。我的一半html被切断了。我想在htmlDialogBox中显示整个html。

GWT版本:2.8.0-SNAPSHOT

    verticalPanel = new VerticalPanel();
    verticalPanel.setSpacing(0);

    setWidget(verticalPanel);
    verticalPanel.setSize("100%","100%");
    scrollPanel = new ScrollPanel();
    verticalPanel.add(scrollPanel);

    htmlDialogBox = new HTML();
    verticalPanel.add(htmlDialogBox);
    scrollPanel.setWidget(htmlDialogBox);

    htmlDialogBox.setSize("100%", "100%");
    htmlDialogBox.setHTML(html);
    setGlassEnabled(true);
    setAnimationEnabled(true);
    setPopupPosition(ClientUtils.DIALOG_X_POSITION,ClientUtils.DIALOG_Y_POSITION);
    show();

1 个答案:

答案 0 :(得分:0)

我找到了自己的答案。

更改setAnimationEnabled(true); to setAnimationEnabled(false);