forms - symfony2.5 maxlength deprecated -
i know why max_length in form type deprecated?
and how accomplish desired effect cleanest way ?
see related issue on github. alternative add together html attribute textarea. can manually add together via attributes:
$builder->add('field', 'textarea', array( 'attr' => array('maxlength' => 255), ));
forms symfony2
No comments:
Post a Comment