限制用户可以在 GXT 网格单元中输入的小数位数
如何限制用户可以在 GXT 网格单元中输入的小数位数。
我可以通过column.setNumberFormat(...) 格式化列配置,但这只是将值四舍五入为定义的格式,例如#.##,并且用户可以输入两个以上的小数位。
我想限制用户键入时的输入,以便他/她最多只能输入两位小数。
最好的, ——托马斯
How can I limit the number of decimal places a user can enter in a GXT grid cell.
I can format the column config via column.setNumberFormat(...) but this just rounds the value to the defined format, e.g. #.##, and the user can enter more than two decimal places.
I would like to limit the input as the users types, so that he/she can only enter a max of two decimal places.
Best,
-- Thomas
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须实现自定义验证器并将其添加到字段中:
You have to implement a custom Validator and add it to the field: