search for: issue_controller

Displaying 2 results from an estimated 2 matches for "issue_controller".

Did you mean: issues_controller
2006 Aug 29
1
Scope problem with form_remote_tag, ajax?
...th call to form_remote_tag --- D1. call to render(:partial => ''form'') ---- E1. Rendering _form.rhtml ---- E2. ajax call using link_to_remote( :action => :tab_description_fields ) ---- (target of ajax call is to a div within the _form.rhtml file) ------ F1. Entering issue_controller::tab_description_fields() ------ F2. call to render(:layout => false) ------ F3. implicit transfer to render of tab_description_fields.rhtml ------- G1. Entering tab_description_fields.rhtml ------- G2. call of text_field(''issue'', ''file_number'') Hopefully...
2006 Jun 15
3
Need help creating a clever route
What I want to do is wrap all the scaffolded administrated pages for my webapp into an admin folder in the controllers and views folders. So... /app /controllers /admin issue_controller.rb article_controller.rb topic_controller.rb ... etc. ... /views /admin /issue _form.rhtml edit.rhtml list.rhtml new.rhtml show.rhtml /article /topic ... etc. ... My question is how do I set up a good, clean ro...