2017-06-08 58 views
0

我怎樣才能爲每個表單添加保存按鈕而不是所有表單(因爲我們在默認情況下有magento)? 我想要類似that或表格。 我試過這個代碼如何添加保存按鈕的形式magento 1.9

$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

我見過的總是HTML源代碼中值轉爲空。所以我讀過你必須在文件中更改$form->setValues$form->addValues,它會起作用。

相關問題