here i given my codes when i execute this remote_function rails give
me this error

ActionController::UnknownAction (No action responded to report_poem.
Actions: create, destroy, edit, index, new, show, update):

in my view

 <span class="report_button" onclick="<
%=remote_function(:url=>{:action=>:report_poem,:id=>@poem.id})
%>">Submit</span>

in my controller

def report_poem
      @poem = Poem.find(params[:id])
      respond_to do |format|
        format.js
      end
end

so anybody know what is the reason is?

-- 
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-t...@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to