简体   繁体   中英

Dropdown list show only one letter Prestashop

I'm developing a prestashop module.in my controller renderForm i have drop down list to load week days.but it showing only first letter of the day.

    public function renderForm() {

$days=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"];

    'input' => [

                    [
                      'type' => 'select',
                        'lang' => true,
                        'required' => true,
                        'label' => $this->l('WeekDay'),
                        'name' => 'weekday',
                        'options' => [
                          'query' => $days,

                        ],

                    ],
         ]
    }

Showing like this

在此处输入图片说明

Inspect Element

检查

Your query value should be like below format as per prestashop 1.7 documentation.

$days = array(
  array(
    'id' => 1,        // The value of the 'value' attribute of the <option> tag.
    'name' => $this->trans('Monday', array(), 'Admin.International.Feature') // The value of the text content of the  <option> tag.
  ),
  array(
    'id' => 2,
    'name' => $this->trans('Tuesday', array(), 'Admin.International.Feature')
  ),
);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM