Skip to content

Commit

Permalink
added upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
bamarni committed Jul 3, 2012
1 parent 150205a commit fa8f74b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions 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');
```

0 comments on commit fa8f74b

Please sign in to comment.