b30-1876198.zul
来自「ZK是一个Ajax Java Web框架」· ZUL 代码 · 共 20 行
ZUL
20 行
<?init class="org.zkoss.zkplus.databind.AnnotateDataBinderInit" ?>
<window>
<html><![CDATA[
<p>1. Don't do anything.</p>
<p>2. It is OK if you did not see "Empty is not allowed" on the right of the textbox.</p>
]]></html>
<zscript>
public class MyConstraint extends SimpleConstraint implements CustomConstraint {
public MyConstraint() {
super(NO_EMPTY);
}
public void showCustomError(Component comp, WrongValueException ex) {
comp.getFellow("errlb").setValue(ex.getMessage());
}
}
MyConstraint ms = new MyConstraint();
</zscript>
<textbox value="@{val}" constraint="${ms}"/>
<label id="errlb"/>
</window>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?