验证组

发布于 2024-11-01 22:29:07 字数 616 浏览 1 评论 0原文

是否可以使用 javascript 获取和控制验证组?我能够验证 ASPxHtmlEditor 是否为空,但我需要控制验证组。我正在使用.net 2.0。

编辑 [04202011]

我需要将 ASPxHtmlEditor 设为必填字段。我使用的是较旧版本 (10.1.6.0) 的 DevEx(现在无法更新),但没有针对它的验证设置。我使用 JavaScript 来验证编辑器,

function validateEmptyEditor(html)
{
   html = html.replace(' ', '');
   html = html.replace('<br />', '');

   if (html.length < 1)
   {
      return false;
   }
   else
   {
      return true;
   }
}

我调用了 ASPxHtmlEditor.ClientSideEventsLostFocus 中的函数并且工作正常。但我的页面使用验证组进行保存。因此,我需要在调用 validateEmptyEditor 时操作验证组。是否可以控制验证组?

Is it possible to get and control a validation group using javascript? I was able to validate ASPxHtmlEditor if empty or not, but i need to control the validation group. I'm using .net 2.0.

EDITS [04202011]

I need to make ASPxHtmlEditor a required field. I'm using an older version (10.1.6.0) of DevEx (can't update right now), but there is no validation settings for it. I used javascript to validate the editor

function validateEmptyEditor(html)
{
   html = html.replace(' ', '');
   html = html.replace('<br />', '');

   if (html.length < 1)
   {
      return false;
   }
   else
   {
      return true;
   }
}

I invoked the function in LostFocus of ASPxHtmlEditor.ClientSideEvents and is working properly. But my page uses validation group for saving. So I need to manipulate validation group when validateEmptyEditor is invoked. Is it possible to control validation group?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一桥轻雨一伞开 2024-11-08 22:29:07

如果我正确理解您的任务,您想知道 ValidationGroup 中的控件是否通过验证。如果是这样,可以使用以下 js 代码来完成:

var isValid = ASPxClientEdit.ValidateGroup("GroupName");

这有帮助吗?

If I understand your task properly, you would like to know, whether the controls residing in the ValidationGroup are passing validation or not. If so, this can be done using the following js code:

var isValid = ASPxClientEdit.ValidateGroup("GroupName");

Does this help?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文