验证组
是否可以使用 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.ClientSideEvents
的 LostFocus
中的函数并且工作正常。但我的页面使用验证组进行保存。因此,我需要在调用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我正确理解您的任务,您想知道 ValidationGroup 中的控件是否通过验证。如果是这样,可以使用以下 js 代码来完成:
这有帮助吗?
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:
Does this help?