I am working on custom module. I want to set default value to text field but failed. I have visited some links for solution but didnt working. Link1 and Link2
$this->setForm($form);
$fieldset = $form->addFieldset('home_form', array('legend'=>Mage::helper('home')->__('Section Information')));
$fieldset->addField('section_name', 'text', array(
'label' => Mage::helper('home')->__('Section Name'),
'required' => false,
'name' => 'section_name',
'value' => 'asdf',
));