如何在形式的Magento 1.9中添加保存按钮



如何为每种表单添加保存按钮,而不是所有表单(默认情况下我们在Magento中的表单(?我想要这样的东西或形式。我尝试了此代码

$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}')",
));

但是我得到一个没有这样的单词的按钮

我已经看到html源代码中的值总是空的。因此,我已经读到您必须通过$form->addValues更改文件中的$form->setValues,并且它将起作用。

最新更新