我们可以在模块的配置页面中更改输入的样式,我使用本教程创建模块页面配置:
正如您在教程中看到的那样,输入的类型是' text'我想改变它,例如我想输入' date',就像prestashop 1.6的默认输入日期一样:
i.stack.imgur.com/9OcBC.png
答案 0 :(得分:1)
问题解决了!!你只需要在输入的类中添加datepicker:
array(
'type' =>'text',
'label' => $this->l('Date : '),
'name' => 'date',
'class' => 'datepicker fixed-width-xxl',
'required' => true )