Displaying 1 result from an estimated 1 matches for "show_loading_select".
2006 Jun 02
1
Updating html breaks my interface
...ces, {}, {:id => "library_select", :onchange
=> "#{
      remote_function(
        :update => "album_select",
        :url => { :action => "album_select"},
        :with => "''library_id=''+value",
        :loading => show_loading_select
        )
    }"}
end
def album_select_all
    @albums= Album.find(:all, :order => "title")
    choices= [[''All'', -1]]
    choices+= @albums.collect { |l| [l.title, l.id] }
    select "album", "id", choices, {}, {}
end
def show_loading_selec...