Postback Action Problem

I ran into the same problem recently and it was basically fuming when I realized it all boiled down to the incorrect parameters being passed to redirect_to().

For your code sample below,

  redirect_to :list

should be   redirect_to action => :list

xplodersuv wrote: