Re: [Rails] ActionController::UnknownAction

2011-01-12 Thread rajeevsharma86
Do you have that same method in yours projects controller ? On Wed, Jan 12, 2011 at 4:14 PM, Anju P s wrote: > Hi > > I m new to RoR. I added a method to an already existing controller. > i am calling that method from a view (roadmap). > I also added following code in route.rb > > project_acti

[Rails] ActionController::UnknownAction

2011-01-12 Thread Anju P s
Hi I m new to RoR. I added a method to an already existing controller. i am calling that method from a view (roadmap). I also added following code in route.rb project_actions.connect 'projects/draganddropsort', :action => 'draganddropsort' **portionwhere i call my function** <%= sortable_element

[Rails] ActionController::UnknownAction (No action responded to 22.

2009-08-07 Thread Alexei Lexx
I try to switch my application from Rails 2.2.2 to Rails 2.3.3. In namespace :admin I have a resource-based controller. See controller class Admin::OSystemsController < Admin::BaseController def index ... end def edit . end def update .. end end Resource is adde