Skip to content

Instantly share code, notes, and snippets.

@vincentlkl
Last active July 25, 2016 12:59
Show Gist options
  • Save vincentlkl/fd8b68182750150621cecc4bf93ebe2b to your computer and use it in GitHub Desktop.
Save vincentlkl/fd8b68182750150621cecc4bf93ebe2b to your computer and use it in GitHub Desktop.
# text
<%= best_in_place @item, :name, :type => :input %>
# textarea
<%= best_in_place @item, :name, :type => :textarea %>
# select dropdown
<%= best_in_place @item, :name, :type => :select, :collection => [[1, "Table"],[2, "Chair"]] %>
# boolean
<%= best_in_place @item, :name, :type => :checkbox, :collection => [true, false] %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment