屏蔽 gwt 中的日期字段
GWT 有什么方法可以用各种日期格式屏蔽日期字段吗? http://digitalbush.com/projects/masked-input-plugin(在演示选项卡中)
我遇到了一些解决方案,其中格式可以应用于使用正则表达式失去焦点,这不是首选。
gxt 中的 TextfieldMask 插件不支持日期字段。我尝试稍微调整一下,但遇到了很多问题。
我探索了 gquery(GWT 的 JQuery 实现)的选项,它目前不支持掩码。
有什么建议/想法吗?
Is there is any way in GWT where date field can be masked with various date formats?
http://digitalbush.com/projects/masked-input-plugin (in demo tab)
I came across solutions where in formatting can be applied on loosing the focus with Regex, which is not preferred.
TextfieldMask Plugin in gxt doesn't support date fields. I tried to tweak that little but running into lots of issues.
I explored options of gquery-(JQuery implementation for GWT), that doesnt support mask as of now.
Any suggestions/ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 JSNI 使用 jQuery 屏蔽输入插件编写屏蔽函数
,然后将侦听器附加到面板/表单/等的渲染事件并调用 JSNI 方法。
看看是否有效
You can use JSNI to write a masking function using the jQuery masked input plugin
Then attach a listener to the render event of the panel/form/etc and call the JSNI method.
See if that works