search for: applicant_ids

Displaying 4 results from an estimated 4 matches for "applicant_ids".

Did you mean: applicant_id
2010 Dec 02
0
Thinking Sphinx sorting problem
...''applicant_id'', :group_function => :attr, :with => Application.filter_for_search(@filter, @season), :sort_mode => :extended, :order => Application::Search::SortBy::SPHINX[@sort], # this gives me sql string to sort by :per_page => 1000) @applicant_ids = Applicant.search_for_ids("@application_ids ''#{application_ids * ''|''}''", :match_mode => :extended2, :page => params[:page], :per_page => 5, :sort_mode => :extended, :order => Application::Search::SortBy::SPHINX[@sort])...
2005 Aug 04
0
Finding rows in table a with zero related rows in table b, part ii
OK. After a little more digging in MySQL''s manual on SubSelects, I''ve changed the finder_sql entry in my model declaration: class District < ActiveRecord::Base has_many :interviewers, :order => "lname, fname" has_many :applicants has_many :unassigned_applicants, :class_name => "Applicant", :finder_sql => "select a.* from
2006 Jul 02
5
Question about setting field values for a belongs_to model
I have two tables, applicants, and skills where each applicant "has_many" skills, and each skill "belongs_to" an applicant. When I have a reference to an applicant and a (skill) id for one of their skills, I thought to update their skills by using @applicant.skills.find(id_of_skill).description = ''new description'' # even adding
2006 Mar 08
19
Creating multiple rows with one form
Hello. I''ve been trying this out for the past two days and I can''t seem to get it. I''m going to have a page where you can upload x amount of images at once. Lets say 10 images need to be uploaded, all with a caption. I''d like to have a browse button to choose the file, then the caption. Now, if I put 10 of them in one form, fill them all out and submit, I get