I m using Devise and Netzke gems. My rails version is 3.1.1
I want to access a devise helper (current_user) in netzke component.
But it not in model or views. It in rails_root/app/component/some_component.rb
How can I call helper method? Thanks.
There is my code....
# app/component/note_grid.rb
class NoteGrid < Netzke::Basepack::GridPanel
js_property :title, "Note"
model "Note"
def configuration
super.merge(
# I want to call helper method here.
:strong_default_attrs => {:user_id => current_user.id},
:columns => [{:name => :updated_at, :header => "Date - Time", :format => "d M Y - h:i A", :width => 200}, :description],
:add_form_config => {:items => [:description]},
:edit_form_config => {:items => [:description]}
)
end
end
In Views
# app/views/main/index.html.erb
<%= netzke :main_container, :class_name => "NoteGrid" %>