I have updated it to :
interested.elements.firstname.options.filters.lcase = "StringToLower"
With code :
if ($this->_request->isPost())
{
$formData = $this->_request->getPost();
if ($form->isValid($formData))
{
echo $formData['firstname']."</br>";
It outputs the string in the original format (without dropping it to lower
case) however if there is a validation error on any of the other boxes, it
re-loads the form with the data as lower case and the error message. Am I
doing something wrong here?
--
View this message in context:
http://www.nabble.com/Form-Ini-tp21542208p21545975.html
Sent from the Zend Framework mailing list archive at Nabble.com.