Displaying 3 results from an estimated 3 matches for "onfiltered".
Did you mean:
  unfiltered
  
2006 Apr 08
2
Roaming profiles cannot be used fully unless a member of "Domain Admins"
...versions = True
        #recycle:noversions = .doc|.xls|.ppt
        #recycle:repository = %u's_network_Recycle_Bin
        #recycle:maxsize = 10000000
        create mask = 0777
        directory mask = 0777
        #vfs objects = recycle
[homes]
        comment = Home Directories
        read onfiltered= No
        create mask = 0664
        directory mask = 0775
        invalid users = mp3
[Shared]
        comment = Miscellaneous Shared  Files
        read onfiltered= No
        create mask = 0664
        directory mask = 0775
        path = /home/samba/Shared
        invalid users = mp3
[tmp]...
2006 Apr 11
1
how to do a simple update on the server from a change of a select box?
...thing simple.
The controller action is:
def update_status
  goal = Goal.find(params[:id])
  goal.status = params[:goal][:status]
  goal.save
end
The relevant form part looks like this
<%= select_tag(''goal[status]'', options_for_select(GoalStatus::STATES,
      goal.status), :onfiltered=> remote_function(:url =>
      :update_status, :id => goal })) %>
Asked another way, how can I send the value of the form element
associated with the remote_function?
Is there a better way to do this?
Thanks
-------------- next part --------------
An HTML attachment was scrubbed......
2006 Jun 09
0
partials and rjs
...er => "descr asc")
    render :partial => ''country_area''
  end
<-- my partial -->
<%= select :country_area, :id, @country_areas.collect {|c| [c.descr, 
c.id]}, {:prompt => "-- Select Area --"},
  {:name => "country_area_select", :onfiltered=> "new 
Ajax.Updater(''country_area_info'',
   ''/controller/admin/change_country_area/''+country_area.selectedIndex,
   {asynchronous:true, evalScripts:true});" }
%>
<-- form containing partial -->
<form>
   <span id="country_are...