我想在输入类型收音机中添加我的自定义类,该类在 模块/命名空间/块/ 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'=>''),
),
]
);
错误是未添加类测试。 请解决此问题... 在此先感谢...。