I have
<%= observe_field :tb_search,
:frequency=>0.5, :update=>'reports',
:url=>{
:action=>'filter_reports',
:only_path=>false,
:user=>@user.id},
:with=>"'search='+encodeURIComponent(value)" %>
but on the controller side, params[:user] is nil. I did a
puts "NTHDEONUTHDOEDEUU#{params[:user].nil?}||"
in the responding method in controller to prove to myself that it was nil.
any ideas?