Add dropdown field from admin form:
1. Select your form file from admin
Ex: Jute_Mymodule_Block_Adminhtml_Form_Edit_Form
protected function _prepareForm()
{
$form = new Varien_Data_Form(array(
‘id’ => ‘edit_form’,
‘action’ => $this->getUrl(‘*/*/save’, array(‘_current’ => true)),
‘method’ => ‘post’,
‘enctype’=> ‘multipart/form-data’
));
$outputArr = Mage::helper(‘MYHELPER’)->getvaluefromCustomfunction();
Drop down is displaying, but the selected one is not saving in the database. Can you help me on that.
Can you please ping me your script here ?