diff --git a/UPGRADE 2.1 b/UPGRADE 2.1 new file mode 100644 index 00000000..2c5bc404 --- /dev/null +++ b/UPGRADE 2.1 @@ -0,0 +1,21 @@ +UPGRADE 2.1 +========= + +### JQuery Chosen + + widget option cannot specify the choice type anymore, you have to append the widget in the type name instead : + + Before: + + ``` + $formBuilder + ->add('country', 'genemu_jquerychosen', array( + 'widget' => 'country', + )); + ``` + + After: + + ``` + $formBuilder->add('country', 'genemu_jquerychosen_country'); + ```