作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
此处理程序仅适用于 ListGrid。
但是,如果您查看 DynamicForm.setValidateOnExit() 的文档,它会说:
If true, form items will be validated when each item's "editorExit" handler is fired as well as when the entire form is submitted or validated.
Note that this property can also be set at the item level to enable finer granularity validation in response to user interaction - if true at either level, validation will occur on editorExit.
最佳答案
有一种方法 form.getErrors()
和 form.showError(true)
.这样你就可以实现了。但为此,您还需要为每个字段设置验证器。
TextItem name = new TextItem("name", "Name");
name.setRequired(true);
name.setRequiredMessage("Please specify name of the Table");
NTRegExpValidator nameValidator = new NTRegExpValidator("(^[a-zA-Z0-9][\\w\\s.()_-]+)$","It should start with alphabets and can have alphanumeric values ( )_-. and space.");
name.setValidators(nameValidator);
name.addKeyUpFieldHandler(new KeyUpHandler){
form.getErrors();
form.showErrror(true);
});
DynamicForm form = new DynamicForm();
form.setField(name);
关于smartgwt - 为什么不能向 DynamicForm 或 FormItem 添加 EditorExit 处理程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9923761/
此处理程序仅适用于 ListGrid。 但是,如果您查看 DynamicForm.setValidateOnExit() 的文档,它会说: If true, form items will be va
我是一名优秀的程序员,十分优秀!