Last active
November 6, 2019 13:57
-
-
Save ahmad19/c4c3f197613f7de5235467f23e326bb6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Examples of select_tag in forms | |
```ruby | |
class SomeModel < ActiveRecord::Base | |
enum status: %i[draft pending paid] | |
end | |
``` | |
```html | |
<%= f.select :status, Receipt.statuses.keys.map{ |w| [w.humanize, w] }, { include_blank: true }, { class: 'form-control', required: true } %> | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment