Groovy/Grails:如何让我的 datePicker 默认为空或 null,而不是显示今天的日期?

发布于 2024-09-06 16:56:25 字数 137 浏览 2 评论 0原文

这基本上就是我的问题。它向我显示今天的日期,而不是空白或 null 或 '' 日期,即使我输入 null 或 '' 它运行完美,但一直向我显示今天的日期,而不是空白的下拉框。所以我想在 gsp 加载时将默认值更改为空白,而不是今天的日期。

谢谢

That is basically my question. It is showing me today's date and not a blank or null or '' date, even if I put null or '' it runs perfectly but keeps showing me today's date, not a blank dropdown box. So I want to change the default to being blank when the gsp loads, not with today's date.

Thanks

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

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

发布评论

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

评论(1

怂人 2024-09-13 16:56:25

Grails 文档中没有记录属性 default 的用法,但可以从实现中提取其功能。使用属性 default="none" 阻止 datePicker 使用当前日期并提供空文本作为 noSelection 值:

<g:datePicker default="none" noSelection="['':'']" />

可以找到有关属性 noSelection 的更多信息在Grails 文档中。

The usage of the attribute default is not documented in the Grails documentation but its functionality can be extracted from the implementation. Use the attribute default="none"to stop the datePicker from using the current date and provide an empty text as the noSelection value:

<g:datePicker default="none" noSelection="['':'']" />

More information about the attribute noSelection can be found in the Grails documentation.

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