storing multiple of the same object from a request

L

laredotornado

Hi,

I have this form ...

<% for i in 1 .. 5 %>
<tr><td>
<table>
<tr>
<td><%= text_field("ec_line_item", "prescription_number",
"index" => i) %></td>
<td><%= text_field("ec_line_item", "description", "index"
=> i) %></td>
</tr>
<tr>
<td align="center">Prescription Number</td>
<td align="center">Description</td>
</tr>
</table>
</td></tr>
<% end %>

Now on my controller end I would like to save the objects (each object
is of class "ec_line_item" with attributes "prescription_number" and
"description") but only if the prescription_number attribute is not
empty. What's the most efficient way of doing this?

Thanks, - Dave
 
R

Rick DeNatale

Hi,

I have this form ...

<% for i in 1 .. 5 %>
<tr><td>
<table>
<tr>
<td><%= text_field("ec_line_item", "prescription_number",
"index" => i) %></td>
<td><%= text_field("ec_line_item", "description", "index"
=> i) %></td>
</tr>
<tr>
<td align="center">Prescription Number</td>
<td align="center">Description</td>
</tr>
</table>
</td></tr>
<% end %>

Now on my controller end I would like to save the objects (each object
is of class "ec_line_item" with attributes "prescription_number" and
"description") but only if the prescription_number attribute is not
empty. What's the most efficient way of doing this?

First, this is really a question for the rails group.
http://groups.google.com/group/rubyonrails-talk/topics

That said, you should check out Ryan Bates series of 3 RailsCasts starting with:
http://railscasts.com/episodes/73
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,774
Messages
2,569,599
Members
45,163
Latest member
Sasha15427
Top