问题标签 [validationgroup]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
875 浏览

asp.net - asp:CustomValidator not returning 'false'

Don't know what is wrong here. This is a page developed by someone else and I am trying to fix one of the issue.

Scenario:

ASP.NET site.

Login.aspx has <asp:login> and there are three validation groups. Login.aspx.cs is a partial class of "user_login".

Each validation group has a textbox and an associate customvalidator. All three custom validators gets triggered when something is entered in corresponding textbox but issue is only the first textbox (bound to validationgroup = 1) returns false when validation fails.

For 2nd and 3rd, the customvalidator get triggered but when there is validation issue and even after setting "args.IsValid = false;", the process continues with what needs to be executed further.

Don't know what is going on wrong here. I would like the customvalidator to return false. Worst case, are there any ways to return the control back to the 'textbox' when validation fails?

Below is the custom validator used.

0 投票
4 回答
11885 浏览

c# - OnClientClick 在 ValidationGroup 之前触发

这是我正在使用的代码:

还有我的 ASP 按钮:

我的问题是 OnClientClick 似乎在 ValidationGroup 之前被触发,因为在我的 OnClientClick 中调用的 JS 函数关闭了我的窗口。

所以窗口关闭,“*”(错误消息)仅在我重新打开窗口时显示。

我需要先检查我的 ValidationGroup!在此先感谢您的帮助

0 投票
1 回答
235 浏览

asp.net - 如何停止验证组中的一系列验证器以在错误时停止触发?网

一个文本框上有 3 个验证器,

asp:RegularExpressionValidator asp:RangeValidator asp:CompareValidator

一些输入会触发所有 3 个,我怎样才能在任何错误时停止触发其余的?

0 投票
2 回答
66 浏览

asp.net - 我们应该总是把验证组

即使页面不超过一个验证组,我们是否应该始终放置验证组,还是应该等到需要单独的验证组时才放置验证组。

0 投票
2 回答
42976 浏览

asp.net - 带有 ValidationGroup 的RequiredFieldValidator 不验证

这是我的标记:

当我删除 ValidationGroup 属性时,行为符合预期,客户端代码警告该字段是必需的。

但是,当我指定 ValidationGroup(如上面的示例中所述)并单击文本框为空的按钮时,客户端代码什么也不做,按钮单击事件触发并且 Page.IsValid 等于 true 并且我的代码继续执行,与预期什么。

任何想法如何解决这一问题?

0 投票
1 回答
286 浏览

symfony - 如何获取由验证组索引的错误

我处理一个多选项卡表单,每个表单选项卡由一组验证。当我在绑定请求时遇到错误时,我想知道第一个无效的选项卡(即验证组)。

Symfony 2.0 是否有可能,以及如何?

0 投票
1 回答
975 浏览

javascript - 如何在单选按钮单击时启用/禁用 asp.net 验证器?

我有 asp.net 表单和几个单选按钮,它们包含嵌套的单选按钮(见图)。文本框有验证器。

问题是:如何在未选中相应的单选按钮时禁用必要的验证器,并在选中单选按钮时启用它们?

我需要通过 javascript 在客户端执行此操作。

在此处输入图像描述

我需要将验证器分组到验证组中吗?

任何帮助表示赞赏。提前感谢))

0 投票
1 回答
152 浏览

validation - ValidationGroup 简单解释

有人可以帮我处理这行代码并告诉我它在寻找什么吗?这段代码与我页面上的文本框控件相关联。

0 投票
1 回答
1312 浏览

asp.net - 验证组验证以编程方式在 asp.net 中使用 vb.net 作为代码隐藏

我有一个面板,面板中的控件..这些控件通过验证组验证。

当下拉框更改时,此面板将显示/隐藏。

问题是...我想在面板中使用验证组验证所有控件

如何编写代码

0 投票
1 回答
867 浏览

jsf - JSF f:validateBean 验证组未更新

我正在使用带有 JSF2.0 的 bean 验证。我有一个验证组,我根据几个条件指定它并链接到托管 bean 中的属性。该属性在页面首次加载并正常工作时分配(即,当提交表单时,验证了正确的组)。但是,如果我更改此属性,则不会更新验证组,并且将使用设置的任何原始值。

例如:JSF 片段:

方法:

关于如何让它发挥作用的任何想法?我还寻找了一种在托管 bean 中以编程方式更改验证组的方法,但没有任何乐趣。