Skip to content

Commit

Permalink
adding example for f.file_input
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagopintodev committed Dec 6, 2012
1 parent 4aced1f commit 15f2663
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions actionpack/lib/action_view/helpers/form_helper.rb
Expand Up @@ -840,6 +840,9 @@ def hidden_field(object_name, method, options = {})
# file_field(:post, :attached, accept: 'text/html')
# # => <input accept="text/html" type="file" id="post_attached" name="post[attached]" />
#
# file_field(:post, :image, accept: 'image/png,image/gif,image/jpeg')
# # => <input type="file" id="post_image" name="post[image]" accept="image/png,image/gif,image/jpeg" />
#
# file_field(:attachment, :file, class: 'file_input')
# # => <input type="file" id="attachment_file" name="attachment[file]" class="file_input" />
def file_field(object_name, method, options = {})
Expand Down

0 comments on commit 15f2663

Please sign in to comment.