search for: image_tag_for_image_column

Displaying 1 result from an estimated 1 matches for "image_tag_for_image_column".

2006 Jun 07
0
Problem with file_column plugin path and application_helper.rb
...However I had a problem with my application_helper.rb file. It wasn''t able to find the url_for_image_column method from the file_column plugin. Here''s the relevant code in applicaiton_helper.rb: # this tag helper creates a image tag for file_column fields that contain images def image_tag_for_image_column(object, method, version, options = {}) options = Hash.new if options.nil? options[:size] = object.dimensions_for(version) image_tag(url_for_image_column(object, method, version), options) end I added the following line to the top of application.rb: require "#{RAILS_ROOT}/vendor/plugins/...