S:select下拉框验证:

<td colspan="5">

<s:select name="vo.typeVO.corp" list="corpMap" theme="css_xhtml"

headerKey="0" headerValue="--请选择所属单位--" listKey="key"

listValue="value"></s:select>

</td>

建立一个xml文件:

在该文件中配置:

<field name="vo.typeVO.corp">

<field-validator type="fieldexpression">

<param name="expression">(vo.typeVO.corp!="0")</param>

<message key="message.vo.typeVO.corp.range" />

</field-validator>

</field>

错误提示信息下载属性文件中:

本来在jsp页面中,没有写theme="css_xhtml"这个属性,在验证时总是没有显示提示信息,加上后就显示了。

05-02 06:49