📄 b30-1876198.zul
字号:
<?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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -