How can I add a attribute to field only using FormBuilder (not twig form theming). When I use
$builder->add('body',null,array('attr' => array('class' => 'tinymce')));
It's add a tinymce
class to label too. Please help.
How can I add a attribute to field only using FormBuilder (not twig form theming). When I use
$builder->add('body',null,array('attr' => array('class' => 'tinymce')));
It's add a tinymce
class to label too. Please help.
$builder
->add('email', EmailType::class ) //will display default label
->add('username', TextType::class,
array(
'label' => false,
'attr' => array(
// 'class' => 'myclassfrom.css', //<- this one is realy avesome
'placeholder' => 'UsernameExample',
'autofocus' => '',
),
))