Any reason that only some of the helpers support the 'id' attribute and others don't as in:
FormButton.php: . ' id="' . $this->view->escape($id) . '"'; FormCheckbox.php: . ' id="' . $this->view->escape($id) . '"' FormFile.php: . ' id="' . $this->view->escape($id) . '"' FormImage.php: . ' id="' . $this->view->escape($id) . '"' FormPassword.php: . ' id="' . $this->view->escape($id) . '"' FormReset.php: . ' id="' . $this->view->escape($id) . '"'; FormSelect.php: . ' id="' . $this->view->escape($id) . '"' FormSubmit.php: . ' id="' . $this->view->escape($id) . '"'; FormText.php: . ' id="' . $this->view->escape($id) . '"' FormTextarea.php: . ' id="' . $this->view->escape($id) . '"' do support it while FormLabel.php* FormNote.php* FormRadio.php* do not? -km -- View this message in context: http://www.nabble.com/Question-about-View-helper-attribute-support-tf4170670s16154.html#a11865079 Sent from the Zend Framework mailing list archive at Nabble.com.
