Hello all, During my very recent first experience in rails, I''ve appreciated a lot of the features of Rails (thanks, DHH & contributors), and among them the different "scaffolding", allowing to show and test a prototype in a record time. As my sample DB was mainly constituted of "many to many" relationships, I''ve come to wonder if the "scaffolding" function could/should be extended to includes these relationships. I feel that this is possible, and I''m ready to try it, but is it interest for such functionality among the growing Rails community? Or someone who already has made/try it? Martin Please forgive me for any misuse of English. _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
Martin, I''ve heard of some talk on this subject before, but I''m not sure who has been doing this. I hope someone else can give you the details. Duane On Tue, 1 Feb 2005 08:03:06 +0100, Van Aken Martin (GFDI) <Martin.VanAken-LlBqsBFTMOg@public.gmane.org> wrote:> > > > Hello all, > > During my very recent first experience in rails, I''ve appreciated a lot of > the features of Rails (thanks, DHH & contributors), and among them the > different "scaffolding", allowing to show and test a prototype in a record > time. > > > > As my sample DB was mainly constituted of "many to many" relationships, I''ve > come to wonder if the "scaffolding" function could/should be extended to > includes these relationships. I feel that this is possible, and I''m ready to > try it, but is it interest for such functionality among the growing Rails > community? Or someone who already has made/try it? > > > > Martin > > Please forgive me for any misuse of English. > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails > > >
<%= form( ''person'', :action =>
''update'') do |io|
io << hidden_field("project","id")
io << %{<p><label for
"person_contact_role">Role</label><br />} +
collection_select("role","id",@roles,"id","name",{:include_blank
=> true})
io << "</p>"
end
Duane Johnson wrote:
>Martin,
>
>I''ve heard of some talk on this subject before, but I''m
not sure who
>has been doing this. I hope someone else can give you the details.
>
>Duane
>
>
>On Tue, 1 Feb 2005 08:03:06 +0100, Van Aken Martin (GFDI)
><Martin.VanAken-LlBqsBFTMOg@public.gmane.org> wrote:
>
>
>>
>>
>>
>>Hello all,
>>
>>During my very recent first experience in rails, I''ve
appreciated a lot of
>>the features of Rails (thanks, DHH & contributors), and among them
the
>>different "scaffolding", allowing to show and test a prototype
in a record
>>time.
>>
>>
>>
>>As my sample DB was mainly constituted of "many to many"
relationships, I''ve
>>come to wonder if the "scaffolding" function could/should be
extended to
>>includes these relationships. I feel that this is possible, and
I''m ready to
>>try it, but is it interest for such functionality among the growing
Rails
>>community? Or someone who already has made/try it?
>>
>>
>>
>>Martin
>>
>>Please forgive me for any misuse of English.
>>_______________________________________________
>>Rails mailing list
>>Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
>>http://lists.rubyonrails.org/mailman/listinfo/rails
>>
>>
>>
>>
>>
>_______________________________________________
>Rails mailing list
>Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
>http://lists.rubyonrails.org/mailman/listinfo/rails
>
>
>