I''m working on my first one-to-many. Through scaffolds I have CRUD interfaces for the "feeds" and "items" tables. I have everything configured for a one-to-many O/R mapping, to my knowledge. Is there a scaffold command I can run to create a CRUD interface with both "feeds" and "items" on the same interface? All the code is hosted at the google repository, it can be browsed. Here are some specific links for some code (rather than posting it): entry point: http://strawr.googlecode.com/svn/trunk/ specific files: http://strawr.googlecode.com/svn/trunk/app/controllers/feeds_controller.rb http://strawr.googlecode.com/svn/trunk/app/controllers/items_controller.rb http://strawr.googlecode.com/svn/trunk/app/models/feed.rb http://strawr.googlecode.com/svn/trunk/app/models/item.rb http://strawr.googlecode.com/svn/trunk/db/migrate/001_feeds.rb http://strawr.googlecode.com/svn/trunk/db/migrate/003_items.rb thanks, Thufir --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Do you mean the views will automatically show what the ActiveRecord model relationships are through the code generated? On Dec 8, 2007 7:30 PM, Thufir <hawat.thufir-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > I''m working on my first one-to-many. Through scaffolds I have CRUD > interfaces for the "feeds" and "items" tables. I have everything > configured for a one-to-many O/R mapping, to my knowledge. > > Is there a scaffold command I can run to create a CRUD interface with > both "feeds" and "items" on the same interface? > > All the code is hosted at the google repository, it can be browsed. Here > are some specific links for some code (rather than posting it): > > > entry point: > http://strawr.googlecode.com/svn/trunk/ > > specific files: > http://strawr.googlecode.com/svn/trunk/app/controllers/feeds_controller.rb > http://strawr.googlecode.com/svn/trunk/app/controllers/items_controller.rb > http://strawr.googlecode.com/svn/trunk/app/models/feed.rb > http://strawr.googlecode.com/svn/trunk/app/models/item.rb > http://strawr.googlecode.com/svn/trunk/db/migrate/001_feeds.rb > http://strawr.googlecode.com/svn/trunk/db/migrate/003_items.rb > > > > > thanks, > > Thufir > > > > >-- Ramon Tayag --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On Sat, 08 Dec 2007 11:30:25 +0000, Thufir wrote:> I''m working on my first one-to-many. Through scaffolds I have CRUD > interfaces for the "feeds" and "items" tables. I have everything > configured for a one-to-many O/R mapping, to my knowledge. > > Is there a scaffold command I can run to create a CRUD interface with > both "feeds" and "items" on the same interface?<% for column in Feed.content_columns %> <p> <b><%= column.human_name %>:</b> <%=h @feed.send(column.name) %> </p> <% end %> <%= link_to ''Edit'', :action => ''edit'', :id => @feed %> | <%= link_to ''Back'', :action => ''list'' %> http://strawr.googlecode.com/svn/trunk/app/views/feeds/show.rhtml I think that I need to edit this file so that the list of feeds will include the items? -Thufir --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On Sat, 08 Dec 2007 20:05:08 +0800, Ramon Miguel M. Tayag wrote:> Do you mean the views will automatically show what the ActiveRecord > model relationships are through the code generated?Maybe not automatically, but, yes, down the road, that''s what I want :) Given: http://strawr.googlecode.com/svn/trunk/app/views/feeds/list.rhtml Can I at least tweak this (generated) file so that *all* the fields are displayed when feeds is listed? I changing: <% for column in Feed.content_columns %> to: <% for column in Feed.content %> but that didn''t have any visible effect :( Of course I''ll be hitting google, but... If I can at least get those primary keys visible that will be progress! thanks, Thufir --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---