EDIT: as far as i can understand passing array('attr' => array('myattr1' => 'value1')) as option for the builder is intended as common attributes for the builder and all its child elements. This is why, for example, passing array('required' => false) at form level will disable HTML5 built-in client side validation for each field inside that form.
(Always looking for a better solution) i'll post my way, inspired by this blog post: a custom form field with view attributes and a Twig block to create new attributes.
class TypeheadType extends AbstractType
{
public function buildForm(FormBuilder $builder, array $options)
{
$builder
->setAttribute('mode', $options['mode'])
->setAttribute('items', $options['items']);
}
public function buildView(FormView $view, FormInterface $form)
{
$view
->set('mode', $form->getAttribute('mode'))
->set('items', $form->getAttribute('items'));
}
public function getDefaultOptions(array $options)
{
return array(
'mode' => 'single',
'items' => 10
);
}
public function getName() { return 'typehead'; }
public function getParent(array $options) { return 'field'; }
}
The new form type should be register as a service and alias should match what's being returned by getName() (is this mandatory? dunno...):
form.type.typehead:
class: Acme\HelloBundle\Form\Type\TypeheadType
tags:
- { name: form.type, alias: typehead }
New field creation (elsewhere):
$builder->add('myfield', 'typehead', array('items' => 15));
In Twig form theme widget block (pattern for name is as getName() . '_widget) you can use view attributes setted in TypeheadType:
{% block typehead_widget %}
{% spaceless %}
<input type="text" {{ block('widget_attributes') }}
{% if value is not empty %}value="{{ value }}" {% endif %}
data-items="{{ items }}" data-mode="{{ mode }}" />
{% endspaceless %}
{% endblock typehead_widget %}
And, finally:
{{ form_row(form.myfield) }}