2011年1月7日金曜日

groovyとApache ClickでTextFieldの最小長・最大長を指定する

groovyとApache ClickでTextFieldの最小長・最大長を指定するには、以下のコードを実行します。

1.ページクラス
TextFieldTest3.groovy
package com.blogspot.groovyarekore.click

import org.apache.click.*
import org.apache.click.control.*

class TextFieldTest3 extends Page
{
def form = new Form("form")

public TextFieldTest3()
{
def textfield1 = new TextField("field1", "フィールド1", true)
// 最小長・最大長を設定
textfield1.setMinLength(2)
textfield1.setMaxLength(4)

form.add(textfield1)
form.add(new Submit("ok", "OK", this, "onOkClick"))
addControl(form)
}
def onOkClick()
{
if( form.isValid() ){
addModel("msg1", "${form.getFieldValue("field1")}")
}
return true
}
}

2.HTMLページ
text-field-test3.htm
<html>
<head><title>text field test3</title></head>
$headElements
<body>
#if ($msg1)
$msg1
#else
$form<br />
#end
$jsElements
</body>
</html>

ブラウザから以下のURLにアクセスします。
http://localhost:8080/(warの名前)/text-field-test3.htm

出力画面


動作環境
JDK6 Update22, Groovy 1.7.5, Apache Click 2.2.0, Apache Tomcat 7.0.4

関連情報
ビルドの仕方などは「groovyとApache ClickでHello Worldを作成する 」を参照
※click-extras-2.2.0.jarもクラスパスに入れる
http://groovyarekore.blogspot.com/2010/11/groovyapache-clickhello-world.html

0 件のコメント:

コメントを投稿