Joomla JHTML::日历输入验证
我使用日历作为 chronoforms 中的自定义字段,我可以编辑代码并使其成为必需的,但如何验证输入?
这是我添加的代码:
<?
echo JHTML::calendar('','expirydate', 'expirydate', '%Y-%m-%d',
array('size'=>'12',
'maxlength'=>'10',
'class'=>' validate[\'required\']',
));
?>
是否有一种本机方法来检查值或阻止人们在框中键入并仅使用弹出日历按钮?
谢谢
I'm using the calendar as a custom field in chronoforms, I can edit the code and did that to make it required, but how can I validate the input?
This is the code I added:
<?
echo JHTML::calendar('','expirydate', 'expirydate', '%Y-%m-%d',
array('size'=>'12',
'maxlength'=>'10',
'class'=>' validate[\'required\']',
));
?>
is there a native way to check the value or to stop people from typing in the box and only using the popup calendar button?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以简单地使用 readonly="true" 属性将日历字段设置为只读。
这样,您只需将该字段设置为必填字段,无需其他验证。
You could simply make the calendar field read-only using the readonly="true" attribute.
That way you just make the field mandatory and no other validation is needed.