search for: investor_groups

Displaying 3 results from an estimated 3 matches for "investor_groups".

Did you mean: investor_group
2011 Mar 23
0
Implementing auto complete for more than one field in Rails
...pt_include_tag :defaults %> Search for a investor group: <%= text_field_with_auto_complete :investor_group, :title, {}, {:method => :get} %><%=submit_tag "Search"%> in **`config/routes.rb`** map.resources :investor_group, :collection => {:auto_complete_for_investor_groups_title => :get } I am able to currently display an image for a particular group and retrieve the total number of members belonging to a group by making use of the following code in **index.html.erb** of groups:- <%for inv_group in @investor_groups%> <div class="inv_group_i...
2011 May 20
4
Unable to figure out why a photo attribute of the paperclip plugin is not being passed in as a param
...t;id"=>"10", "controller"=>"groups"} Investor Columns (0.002125) SHOW FIELDS FROM `investors` Investor Load (0.000173) SELECT * FROM `investors` WHERE (`investors`.`id` = 397) LIMIT 1 InvestorGroup Columns (0.001198) SHOW FIELDS FROM `investor_groups` InvestorGroup Load (0.000114) SELECT * FROM `investor_groups` WHERE (`investor_groups`.`id` = 10) InvestorGroup Load (0.000207) SELECT investor_groups.* FROM investor_groups INNER JOIN investor_group_members ON investor_groups.id = investor_group_members.investor_group_id WHERE ((i...
2011 May 14
0
Undefined method `has_attached_file' with paperclip 2.3.8 gem for Rails 2 using Ruby 1.8.7
Hello, I am trying to use the paperclip plugin in my rails app to upload images for posts. I am using Rails 2.0.2 and ruby 1.8.7 on Ubuntu 10.04 os for project specific purposes. I am referring to the following tutorials for this :- 1. http://railscasts.com/episodes/134-paperclip?view=comments 2. http://jimneath.org/2008/04/17/paperclip-attaching-files-in-rails.html I did a git clone on the