Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 488 Bytes

UPGRADE 2.2.md

File metadata and controls

25 lines (22 loc) · 488 Bytes

UPGRADE to 2.2

JQuery Tokeninput

JQuery widget options have to be moved to a configs key :

Before :

$formBuilder
    ->add('country', 'genemu_jquerytokeninput_country', array(
        'tokenLimit' => 2,
        'theme' => 'facebook',
    ));

Now :

$formBuilder
    ->add('country', 'genemu_jquerytokeninput_country', array(
        'configs' => array(
            'tokenLimit' => 2,
            'theme' => 'facebook',
        )
    ));