Displaying 20 results from an estimated 10000 matches similar to: "JSON instead of unordered list in Autocompleter"
2005 Jul 28
2
autocomplete: how to access a child element of <li>
hi.
i promise this will be my last question for the day.
still playing with autocompleter, everything is working ok, but i''m
having difficulties accessing just the href attribute of <a> element,
which is a child of <li> in the autocomplete response, i.e:
<div class ="autocomplete">
<ul>
<li><a href
2005 Jul 28
2
CSS and autocompleter
hi.
I''m rewriting the code from my own save-yourself-if-you-can
implementation of xmlhttprequest to scriptaculous autocompleter, and
it''s all fine and dandy, except that I am having difficulty
positioning the auto_complete div which contains the results returned
by xmlhttprequest.
the auto_complete div is always stuck in one place, it starts a
little below and half
2007 Aug 02
0
Problems with Ajax.Autocompleter with multiple words returned
Hi, I have implemented the Ajax.Autocompleter.JSon on a webpage.
The JSon array returned contains tokens with multiple words
(such as "This is", and "Hello world").
My problem is that I dont get the second word to be highlighted if
that is the match,
so in the example above, if I write ''wo'' in the box, I will get the
"Hello world", but
2005 Oct 20
4
cross-fade effect on elements updated by ajax.updater?
Hello.
I was wondering if anybody could point me in the right direction of
creating a cross-fade effect for Ajax.Updater. If you have an element
that gets replaced by a new one with Ajax.Updater, how can we blend
one into the other?
Many thanks.
Tench
2006 Aug 23
0
Ajax.Autocompleter method and URIs
Hello,
I''ve looked at a few autocompleters, and really like Script.aculo.us''.
I have two suggestions for making it even better:
1) Make the default HTTP method GET, or at least clearly document how
to change it (through the prototype options). This will make it
possible for the browser as well as intermediaries to cache the
results.
2) Make it easier to control the URIs that
2008 Jan 23
2
Ajax.Autocompleter parameters
I''m trying to pass additional variables to my autocomplete data page.
I used the parameters option but this only sends a static variable
(i.e. I can''t do something like parameters:"param1="+$
(''checkbox1'').checked).
I thought I could fix this by calling a new Ajax.Autocompleter every
time the checkbox was clicked but that just created duplicate
2006 May 24
2
autocompleter competing with saved form data in firefox
Hi all,
I have used the sciptaculous Ajax autocompleter a few times now. A
major problem I have at the moment is with a text field that has focus
when a page loads. The text field has an autocompleter associated with
it, but when the user starts typing, the firefox saved form data
autocompleter appears first, and the scriptaculous one is partially
hidden behind it.
Has anyone else encountered
2006 May 01
0
RE: Leak in the Autocompleter, with scrollable result-div ?
Tommy,
Every time the Autocomplete results is blur()'d, it adds another onblur
event observer (because of "Event.observe(this.update, "blur",
this.onBlur.bindAsEventListener(this),true); // make sure blur is still
around on") which leads to a performance problem / memory leak.
(Commenting it out seems to fix this problem.)
I was wondering why it was there?
Thanks again,
2007 Jan 17
0
Triggering Autocompleter by button
Hi!
I got a Autocompleter on my page and its working fine. For mouse-users
I need a button which triggers the Autocomplete. I tried a
this.getUpdatedChoices(); and it starts a request, but it doesn''t seem
to handle the response.
----------------------------------------------
Ajax.TriggerableAutocompleter = Class.create();
2006 Jun 15
0
Ajax.autocompleter does not narrow down choices
Hello,
I was wondering how to get the Ajax.Autocompleter to behave more like
Autocompleter.Local where it narrows the drop down as you type. The
local autocompleter seems to exhibit this behavior naturally. Am I
missing an argument somewhere?
Joe
_______________________________________________
Rails-spinoffs mailing list
2007 Mar 13
0
Ajax.Autocompleter with paging
hi,
i''d like to create an Ajax.Autocompleter with paging...
my basic idea is to use the
afterUpdateElement
to check if the selected item has a attribute telling it to
make a new ajax call...
my problem is, that i have no clue how to trigger the
getUpdatedChoices
of my ajax.autocompleter from within the afterUpdateElement function,
nor how to set an
2006 Oct 20
0
100% CPU after update in Autocompleter field
Hi,
I''m using internet explorer 6.0 and I''ve written a web application that
use script.aculo.us 1.6.4.
When I use the Autocompleter function with tokens "," and an image
indicator the cpu of the pc goes to 100% after some choose of elements
randomly.
The command is:
new Ajax.Autocompleter(''ckeywords'', ''autocomplete_keywords'',
2006 Jan 11
0
RE: RE: Event.observer - unordered list problems
I just realized I made a mistake... in the first numbered solution, the
!= should be ==
________________________________
From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
[mailto:rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of Ryan
Gahl
Sent: Wednesday, January 11, 2006 2:28 PM
To:
2006 May 01
0
RE: Leak in the Autocompleter, with scrollable result-div ?
Hi Ed
The reason it adds a new onblur is because when you click the scrollbar the
event is gone. I dont know why and how to prevent it, but without adding it
back the onblur does not get triggered and the layer does not hide when you
click somewhere else on the page. If anyone finds a better solution, please
provide a patch.
I still have not been able to make the blur work on Safari, so Thomas
2007 Apr 10
0
Script.Alico.us Ajax.AutoCompleter with PHP Debugger DBG not working
I have a page (generated by PHP) that has an Ajax.AutoCompleter on
it. IF I run the page without running DBG (a PHP debugger) it works
fine. The autocomplete fires and fills in just as expected BUT when I
run it WITH the debugger it never displays. I THINK it has to do with
either cookies OR caching...
The additional headers headers from a debugged instance
Set-Cookie
2005 Oct 01
8
Ajax.InPlaceEditor on Safari & Firefox
Hi,
I''ve downloaded the latest svn trunk and was glad to see that
Ajax.InPlaceEditor forms can now be correctly submitted on Safari as
well, with the server response being correctly displayed as well.
The problem is, however, that clicking again on the same element
(after sumbitting it first) will duplicate the submit form. The next
attempt will triplicate it etc, etc...
Could
2007 May 30
1
Autoloading on Autocompleter
Hello everyone,
How can i show suggestions when display an Autocompleter Object?
I mean that i want to see suggestions directly.
Thank you for your time,
Umut
--~--~---------~--~----~------------~-------~--~----~
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
2006 Apr 24
1
RE: Limited Autocompleter
Joe Athman
St. Paul Travelers - IS Investments
651-310-7597
-----Original Message-----
From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
[mailto:rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of
Athman,Joseph J
Sent: Monday, April 24, 2006 2:14 PM
To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
Subject:
2007 Aug 03
3
Ajax.Autocompleter fadeoff when scrolling the list in IE and Safari
Hi All:
I have a very large user table, more than 2.000, so i cant use a
<select> to present the users list any more.
I replace the <select> with a <input> using Ajax.Autocompleter
If we type "john" or "peter" we still get a very long list, so the
list shows the scroll bar, and its ok.
The problem is that when we try to scroll, the list fades out.
It
2006 Mar 01
4
[Fwd: [PATCH] Allow generic autocompleter (Ajax.Watcher)]
Patch to allow generic Ajax.Autocompleter-style textbox watchers.
Forwarded for "[Rails-spinoffs] Delayed input posting"
-Rob
_______________________________________________
Rails-spinoffs mailing list
Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs