ASPxTextbox - 屏蔽,提示始终在最后一个或第一个字符

发布于 2024-09-13 07:58:16 字数 440 浏览 1 评论 0原文

我有一个 aspxtextbox 例如,

  <dxe:ASPxTextBox ID="txtZip" runat="server" Width="150">
                            <MaskSettings Mask="00000" ErrorText="Please input missing symbols" />
                            <ValidationSettings ErrorDisplayMode="ImageWithTooltip" />
                        </dxe:ASPxTextBox>

如何修改它,以便当用户转到文本框时,它始终将光标定位在索引 0 或最后输入的字符处?

谢谢,

雅各布

I have an aspxtextbox e.g

  <dxe:ASPxTextBox ID="txtZip" runat="server" Width="150">
                            <MaskSettings Mask="00000" ErrorText="Please input missing symbols" />
                            <ValidationSettings ErrorDisplayMode="ImageWithTooltip" />
                        </dxe:ASPxTextBox>

How can I modify it so that when the user goes to the textbox, it will always position the cursor at index 0, or the last entered character?

Thanks,

Jacob

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

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

发布评论

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

评论(1

情定在深秋 2024-09-20 07:58:17

这可以通过处理编辑器的客户端 GotFocus 事件处理程序来完成。这是一些示例代码:

<dxe:ASPxTextBox ID="txtZip" runat="server" Width="150">
                    <MaskSettings Mask="00000" ErrorText="Please input missing symbols" />
                    <ValidationSettings ErrorDisplayMode="ImageWithTooltip" />
                    <ClientSideEvents GotFocus="
                    function(s,e) {
                        var editorValue = s.GetValue();
                        if(editorValue)
                            s.SetCaretPosition(editorValue.toString().length);
                    }" />
                </dxe:ASPxTextBox>

This can be done by handling the editor's client side GotFocus event handler. Here is some sample code:

<dxe:ASPxTextBox ID="txtZip" runat="server" Width="150">
                    <MaskSettings Mask="00000" ErrorText="Please input missing symbols" />
                    <ValidationSettings ErrorDisplayMode="ImageWithTooltip" />
                    <ClientSideEvents GotFocus="
                    function(s,e) {
                        var editorValue = s.GetValue();
                        if(editorValue)
                            s.SetCaretPosition(editorValue.toString().length);
                    }" />
                </dxe:ASPxTextBox>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文