我在 DHTMl 运行时遇到了 scrolledittext 问题我使用的是 firefox 16.0 当我运行它并触发 onfocus 事件时,我有以下代码,整个文本都被选中了。知道为什么吗?
我正在使用 Openlaszlo 5.0
<canvas>
<include href="incubator/scrolledittext.lzx" />
<include href="lz/vscrollbar.lzx"/>
<include href="incubator/newvscrollbar.lzx"/>
<include href="incubator/newvscrollbar_resources.lzx"/>
<button name="text">
<handler name="onclick">
canvas.sp.inp.onfocus.sendEvent();
</handler>
</button>
<scrolledittext name="sp" x="50" y="50"
height="300"
width="400"
focusable="true"
>
</scrolledittext>
</canvas>