GWT:如何在 RichTextArea 上应用 "scroll !important"
GWT : How to apply a "scroll !important" on RichTextArea
在 GWT 2.7 中,我希望我的滚动条在我的 RichTextArea 上始终可见,即使是空的。
通常,在我的 FlowPanel 上我可以简单地应用一个
overflow: scroll !important;
但是在 RichTextArea 上,它不起作用。
感谢您的帮助,
请使用这个:
RichTextArea rtArea = new RichTextArea();
rtArea.getElement().getStyle().setOverflow(Overflow.SCROLL);
您还可以根据自己的选择设置高度和宽度。
在 GWT 2.7 中,我希望我的滚动条在我的 RichTextArea 上始终可见,即使是空的。
通常,在我的 FlowPanel 上我可以简单地应用一个
overflow: scroll !important;
但是在 RichTextArea 上,它不起作用。
感谢您的帮助,
请使用这个:
RichTextArea rtArea = new RichTextArea();
rtArea.getElement().getStyle().setOverflow(Overflow.SCROLL);
您还可以根据自己的选择设置高度和宽度。