Skip to content

Instantly share code, notes, and snippets.

@bvsatyaram
Created February 19, 2015 13:33
Show Gist options
  • Save bvsatyaram/28d54c39e520fb5d4e0f to your computer and use it in GitHub Desktop.
Save bvsatyaram/28d54c39e520fb5d4e0f to your computer and use it in GitHub Desktop.
Simple Form Example
<%= simple_form_for @new_message, remote: true, html: {class: "form-inline"} do |f| %>
<%= f.input :note, label: false, placeholder: "Enter Message", input_html: { id: "note_input" } %>
<%= f.input :owner_id, as: :hidden %>
<%= f.submit 'Submit', hidden: true %>
<% end %>
class Message
attr_accessor :owner_id, :seeker_id
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment