0

在 GWT 2.7 中,我希望我的滚动条在我的 RichTextArea 上始终可见,即使是空的也是如此。

通常,在我的 FlowPanel 上,我可以简单地应用

    overflow: scroll !important;

但在 RichTextArea 上,它不起作用。

感谢您的帮助,

4

1 回答 1

1

请使用这个:

RichTextArea rtArea = new RichTextArea();                 
rtArea.getElement().getStyle().setOverflow(Overflow.SCROLL);                      

您还可以根据自己的选择设置高度和宽度。

于 2015-07-17T10:22:49.950 回答