mirror of
https://github.com/heartcombo/simple_form.git
synced 2022-11-09 12:19:26 -05:00
Note about ORM compatibility for association helper in source code and README.
This commit is contained in:
parent
dcf4862972
commit
442a2c57b7
2 changed files with 4 additions and 0 deletions
|
@ -372,6 +372,8 @@ In case you want to declare different labels and values:
|
|||
f.association :company, label_method: :company_name, value_method: :id, include_blank: false
|
||||
```
|
||||
|
||||
Please note that the association helper is currently only tested with Active Record. It currently does not work well with Mongoid and depending on the ORM you're using your mileage may vary.
|
||||
|
||||
### Buttons
|
||||
|
||||
All web forms need buttons, right? **SimpleForm** wraps them in the DSL, acting like a proxy:
|
||||
|
|
|
@ -169,6 +169,8 @@ module SimpleForm
|
|||
#
|
||||
# From the options above, only :collection can also be supplied.
|
||||
#
|
||||
# Please note that the association helper is currently only tested with Active Record. Depending on the ORM you are using your mileage may vary.
|
||||
#
|
||||
def association(association, options={}, &block)
|
||||
options = options.dup
|
||||
|
||||
|
|
Loading…
Reference in a new issue