Displaying 1 result from an estimated 1 matches for "export_csv".
Did you mean:
export_c
2005 Dec 15
1
Ruby Hash wierdness
Hi
I''m having problems with using a hash. I put in a class and when I
retrieve it, it''s automagically become a string
ie
<%= button_link _("Export CSV"),
SearchParams.get_url_hash({ :action => :export_csv, :klass =>
Customer }, params, @search_fields) %>
Customer is a class that is available to my view
def export_csv
klass = params[:klass]
cond = SearchParams.get_search_conditions(klass, params, @search_fields)
set_csv_headers(klass)
csv_export(klass, cond)
end
but here...