RichTextArea:使用TAB

我想在GWT中的RichTextArea中使用制表符。 按Tab键的通常行为是将焦点切换到下一个元素。 我试图在RichTextArea中键入文本(通过KeyDownHandler)并在当前光标位置插入制表符时捕获TAB键。 遗憾的是RichTextArea没有像TextArea那样的getCursorPos / setCursorPos。

有任何想法吗?

非常感谢!

马库斯


您可以尝试richTextArea.getFormatter().insertHTML("t") ,这应该在光标位置插入一个列表,或者用制表richTextArea.getFormatter().insertHTML("t")替换当前选择。

链接地址: http://www.djcxy.com/p/65467.html

上一篇: RichTextArea: Using TAB

下一篇: How do you get the cursor position in a textarea?