如何在表格magento 1.9中添加保存按钮

时间:2017-06-08 17:20:16

标签: php magento-1.9 fieldset adminhtml

如何为每个表单添加保存按钮,而不是为所有表单添加一个(如默认情况下我们在magento中)? 我想要that之类的东西或形式。 我试过这段代码

$fieldset->addField('yourfield', 'button', array(
'label' => Mage::helper('thorleif')->__('Button Labels'),
'value' => Mage::helper('thorleif')->__('Button Caption'),
'name'  => 'yourfield',
'style' => 'width:64px; height:21px;',
'class' => 'form-button',
'onclick' => "setLocation('{$url}')",
));

但我得到的按钮没有像this

这样的单词

1 个答案:

答案 0 :(得分:0)

我已经看到html源代码中的值总是为空。因此,我已经读过您必须在$form->setValues内更改文件中的$form->addValues,这样才能生效。