Nested attributes question

Hi,

I have a product that has many photos, so when creating a new product
the user can upload as many photos as they want. This all works fine
using nested attributes for. I want the user to be able to set one of
the photos as the default/primary photo, so i have played around with
using a radio button to decide which photo to select as the default
but i cant seem to figure out how to save this to the database because
the records dont exists yet and i have no id field to go on.

Anyone got any solutions or ideas, ive done this before successfully
but the data has always come from an existing table with data in it.

JB

If I’m understanding correctly, you’re allowing the user to upload a
set of photos and at the same time you’re allowing the user to specify
which of those photos should be the default. Could you do something
like this,



In other words, use the “index” as the value of the selected photo.
Another alternative is to use a bit of js along the following lines,



Hi,

 You can solved in the view or in the model, also depends where you

place the default. Some ideas:

 1. If default is in the product, in the product model add

“after_save”, find the photo, get de id and save id in the product.
2. If default is in the photo, solved it in the view.

 Have you consider changing attribute default (boolean) for position

(integer)? And in this case first position will be default, and you can
always reorganize it in the way you want.

 Greetings,

El 10/10/2011 14:50, johnnybutler7 escribi:

Anyone got any solutions or ideas, ive done this before successfully
but the data has always come from an existing table with data in it.

JB


Miquel C. Escarr
+34 699 73 22 46
[email protected]

“Computers are good at following instructions, but not at reading your
mind.” Donald Knuth.

“Los ordenadores son buenos siguiendo instrucciones, pero no leyendo tu
mente.” Donald Knuth.