屏蔽 gwt 中的日期字段

发布于 2024-12-01 00:14:17 字数 352 浏览 1 评论 0原文

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 技术交流群。

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

发布评论

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

评论(1

蒲公英的约定 2024-12-08 00:14:17

您可以使用 JSNI 使用 jQuery 屏蔽输入插件编写屏蔽函数

    public static native void redirect(String id)/*-{
           jQuery(function($){
              $("#"+id).mask("yourmask");
           });
    }-*/;

,然后将侦听器附加到面板/表单/等的渲染事件并调用 JSNI 方法。

看看是否有效

You can use JSNI to write a masking function using the jQuery masked input plugin

    public static native void redirect(String id)/*-{
           jQuery(function($){
              $("#"+id).mask("yourmask");
           });
    }-*/;

Then attach a listener to the render event of the panel/form/etc and call the JSNI method.

See if that works

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