Hi,
I am struggling to put the error messages of a zend form into a new column -
wrapping it in a td tag.

I tried:
elementDecorators.errors.decorator = "Errors"
elementDecorators.errors.options.tag="td"

but it creates this markup
<ul tag="td">
<li>Value is empty, but a non-empty value is required</li>
<li>'' was not found in the haystack</li>
</ul>

I would like to have this:
<td>
<ul>
<li>Value is empty, but a non-empty value is required</li>
<li>'' was not found in the haystack</li>
</ul>
</td>

Any idea how to do this?
Thanks for the help.
SWK
-- 
View this message in context: 
http://www.nabble.com/zend-form-errors-in-new-column-tp24517016p24517016.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to