Are indicators available for anything else other than Auto-Complete? What are others using for non-Autocomplete progress bars? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs -~----------~----~----~----~------~----~------~--~---
Nothing else has them built-in that I know of, but I have created a plugin to add very similar functionality to all rails remote functions if you''re using rails. You can find it here... http://www.agilewebdevelopment.com/plugins/remote_helpers Also somebody posted this recently I think; a list of indicator images... http://www.napyfab.com/ajax-indicators/ Andrew On 10/4/06, The Manhatten Project <teammacromedia-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > Are indicators available for anything else other than Auto-Complete? > What are others using for non-Autocomplete progress bars? > > > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs -~----------~----~----~----~------~----~------~--~---
Yeah, I got the list of indicator images, what I am after is detail of how people are handling progress indicators for remote calls using this framework? with Auto-completer I can use the option "indicator" but this does not work with anything else...how are people handling the http status options for progress indicators other than roll our own JS which simply shows a div on send and hides on callback? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs -~----------~----~----~----~------~----~------~--~---
look at the onLoading and onComplete callbacks for example see http://demo.script.aculo.us/shop it does something like this onLoading:function(request){Element.show(''indicator'')}, onComplete:function(request){Element.hide(''indicator'')} On 10/4/06, The Manhatten Project <teammacromedia-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > Yeah, I got the list of indicator images, what I am after is detail of > how people are handling progress indicators for remote calls using this > framework? with Auto-completer I can use the option "indicator" but > this does not work with anything else...how are people handling the > http status options for progress indicators other than roll our own JS > which simply shows a div on send and hides on callback? > > > > >-- =S. DeVore (the old fart) the advice is free, the lack of crankiness will cost you --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs -~----------~----~----~----~------~----~------~--~---
On 04 Oct 2006, at 22:49, The Manhatten Project wrote:> > Yeah, I got the list of indicator images, what I am after is detail of > how people are handling progress indicators for remote calls using > this > framework? with Auto-completer I can use the option "indicator" but > this does not work with anything else...how are people handling the > http status options for progress indicators other than roll our own JS > which simply shows a div on send and hides on callback?The O''Reilly RJS Templates for Rails book has a great example on how to implement Ajax Global Responders. It enables you to have a progress indicator which reacts to any ajax request. I, as a lot of others, can recommend this short, but valuable book to anyone new to using RJS in Rails. Best regards Peter De Berdt --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs -~----------~----~----~----~------~----~------~--~---
On 04 Oct 2006, at 22:49, The Manhatten Project wrote:> > Yeah, I got the list of indicator images, what I am after is detail of > how people are handling progress indicators for remote calls using > this > framework? with Auto-completer I can use the option "indicator" but > this does not work with anything else...how are people handling the > http status options for progress indicators other than roll our own JS > which simply shows a div on send and hides on callback?... but for the global ajax indicator, you don''t need to develop in Rails btw, it''s a pure javascript solution. Best regards Peter De Berdt --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs -~----------~----~----~----~------~----~------~--~---
Older article, but still valid (also useful if you don''t use rails): http://mir.aculo.us/articles/2005/11/14/ajax-activity-indicators-with- rails-0-14-3 Best, Thomas Am 04.10.2006 um 21:51 schrieb The Manhatten Project:> > Are indicators available for anything else other than Auto-Complete? > What are others using for non-Autocomplete progress bars? > > > >-- Thomas Fuchs wollzelle http://www.wollzelle.com questentier on AIM madrobby on irc.freenode.net http://www.fluxiom.com :: online digital asset management http://script.aculo.us :: Web 2.0 JavaScript http://mir.aculo.us :: Where no web developer has gone before --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs -~----------~----~----~----~------~----~------~--~---