Good afternoon everyone. Using the command: script/generate scaffold User name:string login:string password:string It created a layout in html standard for CRUD in app/views/users. I wonder if you can change this layout (html) standard that is generated by scaffold, for example by placing the default layout of my system, so I do not need to change the layout of each CRUD individually. Is it possible? If possible please suggest me a tutorial or me describe step-by-step how to proceed to effect that change. Thank you. Best Regards ... Adriano Dias da Silva -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
If I understand your question, you can just delete the new layouts and the controller should default to the application layout. On 7/4/10, Adriano Dias da Silva <ti.adrianods-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Good afternoon everyone. > > Using the command: > script/generate scaffold User name:string login:string password:string > It created a layout in html standard for CRUD in app/views/users. > > I wonder if you can change this layout (html) standard > that is generated by scaffold, for example by placing the default > layout of > my system, so I do not need to change the layout of each CRUD > individually. > > Is it possible? If possible please suggest me a tutorial or me > describe step-by-step how to proceed to effect that change. > > Thank you. > > Best Regards ... > Adriano Dias da Silva > > -- > 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. > >-- Sent from my mobile device -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Adriano Dias da Silva
2010-Jul-05 00:04 UTC
Re: Changing Default Layout Generated By Scaffold
Good night. Friend you have not understood the question ... I want to change the layout before running the scaffold. For example: I want to change the default layout of the scaffold. And when I run the scaffold is created the html (which I already changed) in app / views / users. Got it?? Best Regards... Adriano Dias da Silva ___________________________________ On 4 jul, 18:22, DK <dk.k...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> If I understand your question, you can just delete the new layouts and > the controller should default to the application layout. > > On 7/4/10, Adriano Dias da Silva <ti.adrian...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > > > Good afternoon everyone. > > > Using the command: > > script/generate scaffold User name:string login:string password:string > > It created a layout in html standard for CRUD in app/views/users. > > > I wonder if you can change this layout (html) standard > > that is generated by scaffold, for example by placing the default > > layout of > > my system, so I do not need to change the layout of each CRUD > > individually. > > > Is it possible? If possible please suggest me a tutorial or me > > describe step-by-step how to proceed to effect that change. > > > Thank you. > > > Best Regards ... > > Adriano Dias da Silva > > > -- > > 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > To unsubscribe from this group, send email to > > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > For more options, visit this group at > >http://groups.google.com/group/rubyonrails-talk?hl=en. > > -- > Sent from my mobile device-- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
I see, so you want to design how the page will look before running the scaffold? If so, no there is no way to do this. Scaffolding autogenerates the html - so unless you modified some core rails class the output is always the same. I wanted to do the same thing when I started. Once you get used to erb you won''t really need to scaffold. On 7/4/10, Adriano Dias da Silva <ti.adrianods-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Good night. > > Friend you have not understood the question ... > I want to change the layout before running the scaffold. > > For example: > I want to change the default layout of the scaffold. > And when I run the scaffold is created the html (which I already > changed) > in app / views / users. > > Got it?? > > Best Regards... > Adriano Dias da Silva > > ___________________________________ > > On 4 jul, 18:22, DK <dk.k...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> If I understand your question, you can just delete the new layouts and >> the controller should default to the application layout. >> >> On 7/4/10, Adriano Dias da Silva <ti.adrian...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> >> >> >> > Good afternoon everyone. >> >> > Using the command: >> > script/generate scaffold User name:string login:string password:string >> > It created a layout in html standard for CRUD in app/views/users. >> >> > I wonder if you can change this layout (html) standard >> > that is generated by scaffold, for example by placing the default >> > layout of >> > my system, so I do not need to change the layout of each CRUD >> > individually. >> >> > Is it possible? If possible please suggest me a tutorial or me >> > describe step-by-step how to proceed to effect that change. >> >> > Thank you. >> >> > Best Regards ... >> > Adriano Dias da Silva >> >> > -- >> > 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> > To unsubscribe from this group, send email to >> > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> > For more options, visit this group at >> >http://groups.google.com/group/rubyonrails-talk?hl=en. >> >> -- >> Sent from my mobile device > > -- > 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. > >-- Sent from my mobile device -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Adriano Dias da Silva wrote:> Good afternoon everyone. > > Using the command: > script/generate scaffold User name:string login:string password:string > It created a layout in html standard for CRUD in app/views/users. > > I wonder if you can change this layout (html) standard > that is generated by scaffold, for example by placing the default > layout of > my system, so I do not need to change the layout of each CRUD > individually. > > Is it possible? If possible please suggest me a tutorial or me > describe step-by-step how to proceed to effect that change. > > Thank you. > > Best Regards ... > Adriano Dias da SilvaGreetings I would recommend to take a look at this : http://railscasts.com/episodes/58-how-to-make-a-generator you can create your custom generator exactly the way you like so you can use your own scaffold layout. Also, in Ruby in Rails 3 : http://railscasts.com/episodes/216-generators-in-rails-3 At last but not least, have a look at this gem: http://patshaughnessy.net/view_mapper -- Posted via http://www.ruby-forum.com/. -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Also have a look at this : http://www.tonyspencer.com/2007/03/01/custom-scaffolding-for-rails/ -- Posted via http://www.ruby-forum.com/. -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.