[Rails] Using standard helper methods in my helpers

Jacek Olszak jacekolszak at gmail.com
Sun Jan 1 17:57:41 GMT 2006


Hi... I've written some simple helper method. My method uses standard 
helper methods from Rails. When I try to use them from templates - 
everything is working, but when I try to execute from my helper I get an 
exception. Here is my code:

module ApplicationHelper
  def reset_add_function
    r=update_element_function("add") {
      link_to_remote( "Nowy watek", :update => "add", :url => 
{:controller=>"add", :action => "add" } )
    }
  end
end

The reset_add_function throw an exception:

undefined local variable or method `_erbout' for 
#<#<Class:0x385b0a8>:0x385afd0>

in line where update_element_function is used


What's wrong with this code? It is not possible to use standard helper 
methods from my helpers ?

Regards
Jacek

-- 
Posted via http://www.ruby-forum.com/.


More information about the Rails mailing list