Displaying 1 result from an estimated 1 matches for "date_of_hir".
Did you mean:
  date_of_hire
  
2006 Jul 05
0
Javascript repeating fields.
...k. 
I can definitely do it, but it gets kinda messy and I want to use partials
for the repeating fields, but I can''t figure out how to do it in a DRY way.
Anyone got any ideas?
Here''s a concrete example:
Say you have a couple of database tables like this:
employees:
	id
	name
	date_of_hire
employee_phone_numbers:
	id
	employee_id
	phone_number
Now, say I want a page for editing an employee. Here''s a template:
edit.rhtml
<% form_for :employee, @employee, :url => {:action => ''update} do |f| %>
	<%= f.text_field name %>
	<%= f.date_of_hire %&g...