Skip to content

Instantly share code, notes, and snippets.

@sher
Created July 25, 2011 03:47
Show Gist options
  • Save sher/1103528 to your computer and use it in GitHub Desktop.
Save sher/1103528 to your computer and use it in GitHub Desktop.
# Equipment model
class Equipment < ActiveRecord::Base
def price
read_attribute(:price).to_i
end
end
# Form _form.erb
<%= f.fields_for :equipment do |builder| -%>
<%= render "equipment_fields", :f => builder %>
<% end %>
# Partial _equipment_fields.erb
<div class="equipment_fields">
<%= f.text_field :price %>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment