在prestashop 1.6中更改配置页面(模块)中的输入类型和样式

时间:2014-06-14 12:56:30

标签: prestashop-1.6

我们可以在模块的配置页面中更改输入的样式,我使用本教程创建模块页面配置:

正如您在教程中看到的那样,输入的类型是' text'我想改变它,例如我想输入' date',就像prestashop 1.6的默认输入日期一样:
i.stack.imgur.com/9OcBC.png

1 个答案:

答案 0 :(得分:1)

问题解决了!!你只需要在输入的类中添加datepicker:

 array( 
'type' =>'text',
'label' => $this->l('Date : '),
'name' => 'date',
'class' => 'datepicker fixed-width-xxl',
'required' => true )