自定义类未在magento 2的输入类型收音机中添加

时间:2019-03-08 10:56:29

标签: magento-2.3

  

我想在输入类型收音机中添加我的自定义类,该类在   模块/命名空间/块/ Adminhtml /产品/标签/Edit/Form.php

$fieldset->addField(
        'label position',
        'radios',
        [
            'label' => __('Label Position'),
            'title' => __('Label Position'),
            'name' => 'label_position',                
            'required' => true, 
            'class' => 'test',
            'values' => array(
                        array('value'=>'top_left','label'=>''),
                        array('value'=>'top_center','label'=>''),
                        array('value'=>'top_right','label'=>''),
                        array('value'=>'middel_left','label'=>''),
                        array('value'=>'middel_center','label'=>''),
                        array('value'=>'middel_right','label'=>''),
                        array('value'=>'bottom_left','label'=>''),
                        array('value'=>'bottom_center','label'=>''),
                        array('value'=>'bottom_right','label'=>''),
                   ),
        ]
    );
  

错误是未添加类测试。   请解决此问题...   在此先感谢...。

0 个答案:

没有答案