search for: issues_controller

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

2006 Jun 22
1
acts_as_taggable gem problems
...look at the sql involved. I have figured out the sql to do this in MS SQLserver to give me the correct results, but this still doesn''t solve the NoMethodError) 2. I cannot add tags to my models via my UI but I can add them via the script/console. When I try to add them via the UI in issues_controller.rb I get a NoMethodError issues_controller.rb def create @issues = Issues.new(params[:issues]) @issues.tag params[:tags] # NoMethodError raised here if @issues.save flash[:notice] = ''Issues was successfully created.'' redirect_to :action => ''list'...
2006 Aug 29
1
Scope problem with form_remote_tag, ajax?
...is file_number. My use of ajax is to put a subset of the table''s fields on different tabs in a notebook style. In this example, when the user clicks on the appropriate link, the fields I''ve considered descriptive are displayed, and file_number is one of those. A1. Entering issues_controller.rb A2. call to issues_controller::edit() - B1. within edit, @issue is assigned to issue.find(params[:id]) - B2. implicit call to render edit.rhtml -- C1. Rendering edit.rhtml -- C2. form setup with call to form_remote_tag --- D1. call to render(:partial => ''form'') ---- E1. Re...