0

我想使用 adf richtexteditor 组件并实现以下两件事:

  1. 字符计数器 [用户动态输入的字符数] 2.拼写检查

我使用的是 11.1.1.6 Jdev 版本。

4

1 回答 1

0

您可以使用将 javascript 函数调用挂钩到 keyPress、mouseClick 等事件。就像是:

<af:resource type="javascript">
  function doSomething(){ }
</af:resource>
<af:richTextEditor>
  <af:clientListener method="doSomething" type="keyPress"/>
</af:richTextEditor>

更多详情请访问:http ://docs.oracle.com/cd/E24382_01/web.1112/e16181/af_arch.htm

于 2013-07-02T09:28:59.807 回答