On the change of a 'select', I'm calling a method in my controller, 'get_sched'. That method just sets a couple variables, then I do a redirect with:
respond_to do |format|
format.html { redirect_to :action => "index", :id => params[:id] }
end
My log shows that it's redirecting, but the data on my page isn't updating. Do i need to do something else to make it update?