Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I change default size of text field in symfony2 formType class

Tags:

symfony

How can I change default text field size in symfony2 formType class

like image 722
Tushar Avatar asked Jan 24 '13 15:01

Tushar


1 Answers

Did you try something like :

$builder->add('your_text_field', 'text', array(
    'attr' => array('size' => '25'),
));
like image 143
Laurent Brieu Avatar answered Nov 15 '22 07:11

Laurent Brieu