2008年12月3日水曜日

ZK: Textboxのテキストを選択状態にする


<window title="Button window" border="normal">
<vbox>
<button label="Left" width="125px">
<attribute name="onClick">
Messagebox.show("Textboxのテキストを選択状態にします");
txt.focus();
txt.setSelectionRange(0, txt.getText().length());
</attribute>
</button>
<textbox id="txt" value="123456"/>
</vbox>
</window>

0 件のコメント: