Reputation: 139
How can I change default text field size in symfony2 formType class
Upvotes: 5
Views: 4384
Reputation: 3367
Did you try something like :
$builder->add('your_text_field', 'text', array(
'attr' => array('size' => '25'),
));
Upvotes: 10