Hi I have a zend form with this code in it
$field = new Zend_Form_Element_Submit('submit');
$field->setAttrib('class', 'btn')->setlabel('Save');
$this->addElement($field);
but the html comeing is:
<input type="submit" class="btn" helper="formSubmit" value="" id="submit" name="submit">
can't figure out why is the value not showing up?