I am using symfony2
I have Manytomany entity and using multiple select box like this.
in php
->add('availLangs','entity',array(
'class' => 'UserBundle:Lang',
'label' => 'form.availLangs',
'multiple' => true))
in twig
{{ form_widget(form.availLangs) }}
It's nicely simple though,however when there are many choices(like 10~), the situation could be chaos for user.
So I am trying to implement choose box like this
or
Some widget to select multiple items from many items easily.
Is there good reference for implement with symfony2 or formbuilder?