need advise with search / browsing

0 views
Skip to first unread message

tom

unread,
Feb 16, 2010, 3:29:39 PM2/16/10
to rubyonra...@googlegroups.com
hi,

have a JOB-model, which belongs_to a variety of other models, eg:
Industry, Category etc...
i have:
######################
controller:

def browse
@jobs = Job.all

@jobind = JobIndustry.all
@jobcat = JobCategory.all
@joblevelexp = LevelOfExperience.all
@joblevelcareer = LevelOfCareer.all
@jobleveledu = LevelOfEdu.all
@jobyearsexp = YearsOfExperience.all
@joblocation = JobLocation.all

respond_to do |format|
format.html # index.html.erb
format.xml { render :xml => @jobs }
end
end
######################
view:
literates through all the variables from the controller, and displays
them each a html-div including a COUNT of the JOBS.

######################
question:

i want to transform the html-output into a link, so that if i click eg
onto the INDUSTRY: "Telephone" or whatever, i want the whole result to
be filtered. not sure how to do that...

an live example is monster.com, when u got o browse jobs.

//this is just a learning platform

thx tom

tom

unread,
Feb 16, 2010, 4:10:23 PM2/16/10
to rubyonra...@googlegroups.com
am i better of with that ?(from the api):


Post.find(:all, :include => [ :author, :comments ], :conditions =>
['comments.approved = ?', true])

can i add as many conditions as i want to the individual associations?

thx

Jarin Udom

unread,
Feb 17, 2010, 1:10:31 PM2/17/10
to Ruby on Rails: Talk
Check out the searchlogic gem, it will make your life way easier on
this.

Jarin Udom
Robot Mode LLC

Reply all
Reply to author
Forward
0 new messages