ASPxTextBox 错误文本在失去焦点时未更新

发布于 2024-12-09 04:06:23 字数 620 浏览 3 评论 0原文

我得到了这个 ASPxTextBox

<dxe:ASPxTextBox ID="txtFirstName" runat="server">
    <ClientSideEvents LostFocus="function(s, e) {
        if (s.GetText() == '')
        {
            s.SetIsValid(false);
            s.errorText = 'Please enter First Name.';
        }
    }"></ClientSideEvents>
    <ValidationSettings ErrorDisplayMode="ImageWithTooltip">
    </ValidationSettings>
</dxe:ASPxTextBox>

但是显示的 errorText 不是我在 LostFocus 事件中设置的内容。相反,工具提示中会显示默认的 errorText,即“无效值”。

有什么想法吗?谢谢

I got this ASPxTextBox:

<dxe:ASPxTextBox ID="txtFirstName" runat="server">
    <ClientSideEvents LostFocus="function(s, e) {
        if (s.GetText() == '')
        {
            s.SetIsValid(false);
            s.errorText = 'Please enter First Name.';
        }
    }"></ClientSideEvents>
    <ValidationSettings ErrorDisplayMode="ImageWithTooltip">
    </ValidationSettings>
</dxe:ASPxTextBox>

But the errorText displayed isn't what I have set inside the LostFocus event. Instead, the default errorText which is "Invalid value" is displayed in the tool tip.

Any ideas? Thanks

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

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

发布评论

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

评论(2

萌吟 2024-12-16 04:06:23

为了完成此任务,有必要:

启用“必需”验证(将 ValidationSettings.RequiredField.IsRequired 属性设置为“true”;

指定“必需”errorText (ValidationSettings.RequiredField.ErrorText);

通过设置强制编辑器验证将 ValidationSettings.ValidateOnLeave 属性设置为“true”:

<dxe:ASPxTextBox ID="txtFirstName" runat="server">
    <ClientSideEvents LostFocus="function(s, e) {
        s.Validate();
    }"></ClientSideEvents>
    <ValidationSettings ErrorDisplayMode="ImageWithTooltip" ValidateOnLeave="true">
        <RequiredField IsRequired="true" ErrorText="Please enter First Name." />
    </ValidationSettings>
</dxe:ASPxTextBox>

In order to accomplish this task, it is necessary to:

enable “required” validation (set the ValidationSettings.RequiredField.IsRequired property to “true”;

specify the “required” errorText (ValidationSettings.RequiredField.ErrorText);

force editor validation by setting the ValidationSettings.ValidateOnLeave property to “true”:

<dxe:ASPxTextBox ID="txtFirstName" runat="server">
    <ClientSideEvents LostFocus="function(s, e) {
        s.Validate();
    }"></ClientSideEvents>
    <ValidationSettings ErrorDisplayMode="ImageWithTooltip" ValidateOnLeave="true">
        <RequiredField IsRequired="true" ErrorText="Please enter First Name." />
    </ValidationSettings>
</dxe:ASPxTextBox>
寒尘 2024-12-16 04:06:23

我碰巧解决了这个问题:

        if (s.GetText() == '')
        {
            s.errorText = 'Please enter First Name.';
            s.SetIsValid(false);
        }

在将 ASPxTextBoxIsValid 属性设置为 falseerrorText 的值代码>.

(我想嘲笑我的愚蠢!天啊)

感谢那些帮助过的人。 :)

I happen to solve the problem:

        if (s.GetText() == '')
        {
            s.errorText = 'Please enter First Name.';
            s.SetIsValid(false);
        }

Modifying the value of errorText should come first before setting IsValid property of the ASPxTextBox to false.

(I want to laugh at my stupidness! OMG)

Thanks for those who helped. :)

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