Tushar
Tushar

Reputation: 139

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

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

Upvotes: 5

Views: 4384

Answers (1)

Laurent Brieu
Laurent Brieu

Reputation: 3367

Did you try something like :

$builder->add('your_text_field', 'text', array(
    'attr' => array('size' => '25'),
));

Upvotes: 10

Related Questions