Drupal - 强制 CCK 日期和时间字段 - 仅日期是强制的
我有一个日期和时间的 CCK 字段。小部件类型是“带有日期弹出日历的文本字段”。该字段为必填字段。
日期工作正常,但如果将时间留空(小时和分钟),则可以创建节点并且时间字段显示为“(全天)”。如何强制指定以小时和分钟为单位的时间?
谢谢
I have a CCK field of date and time. The widget type is 'Text Field with Date Pop-up calendar'. The field is mandatory.
The date works fine, but if you leave the time blank (hours and minutes), the node can be created and the time field reads '(All day)'. How can I make it mandatory to specify a time in hours and minutes?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用 datestamp 而不是 datetime:
“[datestamp] 必须填写完整的日期——年、月、日、小时、分钟、秒,因此有时您必须任意设置其中一些值,即使它们不适用。 ”
http://drupal.org/node/262066
Try using datestamp instead of datetime:
"[datestamp] must be filled with a complete date -- year, month, day, hour, minute, second, so you sometimes have to arbitrarily set some of these values even if they are not applicable."
http://drupal.org/node/262066
在日期设置中,您有粒度,我认为选择小时和分钟可能会解决您的问题。
In the date settings you have granularity, I think selecting hours and minutes there might solve your problem.