updated question
I want to highlight weeks of the datepicker that have the sum of hours below 40. To do this i have to look at the records table for the last 3 weeks and with the current user. Ive written some code below that i know isnt right but hopefully you can get the jist. Ive been told to not put this in js but i dont know how id do this any other way considering i have to come back to js in order to set the colour of the highlight on the datepicker?
for(i=0;i<3;i++){
date.setDate(date.getDate() - 7);
record = Record.sum(:hours,:where => :week => date && :user_id => current_user.id )
}
Recordclass available there, for example. Perhaps you could try rephrasing your question? – August Lilleaas Sep 20 '11 at 8:43