ASPxTextbox - 屏蔽,提示始终在最后一个或第一个字符
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可以通过处理编辑器的客户端 GotFocus 事件处理程序来完成。这是一些示例代码:
This can be done by handling the editor's client side GotFocus event handler. Here is some sample code: