如您所见,日期时间输入类与其他输入类一样。我使用 twitter bootstrap 但如何更改日期时间输入内部输入类?(无需破解表单助手)
这是我的日期时间选择器输入:
echo $this->Form->input('issue_date');
和这样创建的表格:
echo $this->Form->create('Certificate',array('class'=>'form-horizontal','inputDefaults' => array(
'format' => array('before', 'label', 'between', 'input', 'error', 'after'),
'div' => array('class' => 'control-group'),
'label' => array('class' => 'control-label'),
'between' => '<div class="controls">',
'after' => '</div>',
'error' => array('attributes' => array('wrap' => 'span', 'class' => 'help-inline')))
));