Groovy/Grails:如何让我的 datePicker 默认为空或 null,而不是显示今天的日期?
这基本上就是我的问题。它向我显示今天的日期,而不是空白或 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Grails 文档中没有记录属性
default
的用法,但可以从实现中提取其功能。使用属性default="none"
阻止 datePicker 使用当前日期并提供空文本作为 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 attributedefault="none"
to stop the datePicker from using the current date and provide an empty text as the noSelection value:More information about the attribute
noSelection
can be found in the Grails documentation.