如何为每个表单添加保存按钮,而不是为所有表单添加一个(如默认情况下我们在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
这样的单词答案 0 :(得分:0)
我已经看到html源代码中的值总是为空。因此,我已经读过您必须在$form->setValues
内更改文件中的$form->addValues
,这样才能生效。