To whom it may concern in order to solve having multiple submit elements in one form:
because of IE6's failure to handle multiple button type="submit" elements properly, I ended up using two input type="submit" elements using Zend_Submit. Using $element->setName() I set the names of the two elements to be the same after creating them. I then used Javascript as progressive enhancement replacing the input elements by button elements in order to be able to set different values and labels containing HTML code, removing the unchecked submit button onsubmit so that IE6 handles them properly. Bernd -- View this message in context: http://www.nabble.com/setValue-for-zend_form-button-tp22486328p22501225.html Sent from the Zend Framework mailing list archive at Nabble.com.
