0
votes
2answers
20 views
Help solving a routing error in Rails
I have a controller called form_questions_answers with a method in it called modify_rule but when I perform a post to /form_questions_answers/modify_rule/60 Rails tells me:
Routing Error
No route …
1
vote
3answers
58 views
Rendering Partials from One Controllers View to Another Controllers View in Rails
I have a view for a controller called "show". Inside that view, i want to render the contents of another controller's view - and obviously, the logic for the form on that view to talk to the …
0
votes
1answer
45 views
set instance variables with activescaffold
Hi All,
I've recently added activescaffold to an existing rails project, and the problem I'm having is that the variable names that activescaffold is using are not the same as the ones I already …
0
votes
1answer
30 views
(rails) hidden form elements not giving values to controller
I have the following form:
<% form_for(:tag, :url => {:action => "post_tag", :id => @photoID}) do |form| %>
<%= error_messages_for(:tag) %>
<% if @errors then %>
…
0
votes
1answer
24 views
grails + gwt request handling via controllers
I am new to gwt. I am trying to integrate gwt+grails.Can anybody provide me a good example for handling the request using grails controllers and not a custom servlet.I will be really thankful if …
0
votes
3answers
86 views
cakePHP: how to combine two or more application views on one cakePHP layout page?
Using cakePHP my goal is to combine the index view of two or more controllers in one layout page.
Example:
I have controllers for: news, events, links.
I want to show the last five entries from each …
1
vote
1answer
33 views
activescaffold controller missing activescaffold work around
Hi All,
I have a 3yr old application that has some controllers with some very unrestful actions. I'm trying to implement a new resource that has relationships to some of the older ones, but I want …
1
vote
1answer
60 views
Windows(dev) to Linux(prod) Zend Framework migration errors
Hi Guys,
I'm getting the following error migrating my code across from my Windows dev machine to my linxu production machine. I'm aware there are always separator and case sensitivity issues (which I …
1
vote
1answer
52 views
Actions in ASP.NET MVC
Hello,
When typing in my URL
SalaryFor/Microsoft/Balmer
i need to display salary for user with name Balmer
and if I type in URL
SalaryFor/Microsoft
i need to display salary for all employee in …
0
votes
1answer
174 views
Nerd Dinner validation rules question
In the NerdDinner tutorial, Step 5, mid way down under Complete Edit Action Method Implementations there is a paragraph:
The nice thing about our Edit implementation is that neither our Controller …
0
votes
3answers
237 views
How to specify the location a Mvc view will be created for a Mvc controller?
Important Update
Since the release of MVC 2.0 Preview 1 this feature has been implemented as the part of the actual framework itself in the form of Areas. More details available on Phil Haack's …
1
vote
3answers
47 views
Help with naming my admin related controllers
I can't come up with a nice name for my admin related controllers.
I have a UserController that is used for the site (non-admin related actions). Now I created an ADMIN section that has the …
0
votes
1answer
74 views
How does MVC Invoke an Action and map Request.Form to it’s Parameters
I need to create something similar to how MVC invokes an Method(Action) and also uses the Model Binder to map a NamedValueCollection to the parameters on that method. Basically I have a Controller …
0
votes
1answer
34 views
Is it a good idea to put content access logic in a BaseController?
I'm developing an ASP.NET MVC application where the content for any page can be pulled from the database, if it exists, and displayed on the page.
This is to make it possible for non-technical …
0
votes
2answers
60 views
Apply Rails controller filter to all controllers of a particular namespace?
I have a bunch of controllers in a namespace Foo.
I'd like to apply a before_filter 'require_user' to all of them, but not to other controllers, that do not belong to Foo namespace.
Is there any way …
