我想使用 adf richtexteditor 组件并实现以下两件事:
- 字符计数器 [用户动态输入的字符数] 2.拼写检查
我使用的是 11.1.1.6 Jdev 版本。
我想使用 adf richtexteditor 组件并实现以下两件事:
我使用的是 11.1.1.6 Jdev 版本。
您可以使用将 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