Displaying 20 results from an estimated 20000 matches similar to: "Help with AJAX autocomplete and links"
2007 Aug 08
1
autocomplete field in ajax response html - css does not get applied.
Hi all,
I have a page in which a div is updated with some html via Ajax. The
returned html contains an autocomplete field. The autocomplete field
works but the drop down results div does not get css applied to it so the
selections don''t get highlighted when I use the up/down arrows and so
I am unable to select from the drop down except for the first item. I
have been looking at this in
2007 Jan 30
0
Autocomplete nested within AJAX partial
I have the scriptaculous autocomplete working perfectly for normal
page access. But having problems when combining with AJAX.
The page contains a div that is updated dynamically via AJAX.
Also the autocomplete field lives within this dynamic region.
On first load (normal page access) the autocomplete works fine. However
it stops to respond once AJAX updates the region.
It seems I am missing
2006 Apr 10
0
Samples for AJAX autocomplete and Inplace Editor are not working in FF 1.5.1
Hello Everyone,
I am don''t know if this is known issue. AJAX autocomplete and Inplace Editor
Functional test examples are not working in FireFox 1.5.1.
Same files are running perfectly in IE 6.
error show at line
new Ajax.Autocompleter(''ac1'',''ac1update'',''_autocomplete_result.html'');
error is "Ajax.Autocompleter is not a
2007 Jan 31
0
change the url in the ajax.autocomplete object
Hi!
I need to change dinamicaly the url of the ajax autocomplete object
aftes if being declared.
I tried to change it like: auto1.url = ''new/url/script.php'' but it
didn''t work.
Any idea?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group.
To post to
2007 Jun 14
2
A more fancy autocomplete using scriptaculous and ajax
I want to create an autocomplete text field that when you type in
(some
of) a users name, it pops up the portrait image associated to that
user
on the left hand side, which can then be dragged away in to a
Sortable.Droppable element adding that member to your team...
I can get the results to display, but not where I want them. They are
always in a list below the textbox.
1) possible?
2) Do the
2006 Jan 23
1
autocomplete=off not working on Firefox
I noticed that the latest control.js disables auto complete:
this.element.setAttribute(''autocomplete'',''off'');
So I removed my inline "autocomplete=''off''" from my input fields.
But Firefox still auto completes.
Using the Firefox DOM Inspector I do see that it''s applied
by Ajax.Autocompleter as expected. The Inspector
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 Jun 02
5
scriptaculous autocompletion LIMIT and ajax vs. local
Hi,
I am using scriptaculous ajax autocompletion (not local autocompletion).
I have 2 questions:
1 - The database query being sent to the server always has LIMIT 10. I
don''t want to have a limit, but I just can''t for the life of me find
where this limit is set in the code. I did see "choices: 10" in
controls.js but that''s for autocompleter.Local, which I
2006 Nov 30
12
Disable autocomplete (Ajax.Autocompleter) on the fly.
I''m sure there is an easy way to do this, but it is one of those things
that is incredibly difficult to search for.
How can I disable an ''Ajax.Autocompleter'' element from working ''on the
fly''? I have a page where I''m using two (I know it''s crazy)
Ajax.Autocompleter elements and once one of them has got a result I
want the other field
2005 Oct 20
1
Autocomplete - Destroying the object
Hi,
I''m new to all this so if this is a daft question sorry.
I''m using Ajax Autocomplete to populate a search box with likely matches.
These results need to be filtered by an option from a select box that
is alongside the search box.
As the current Autocomplete function only takes in one id to post to
the search file, i figured i could post more stuff to the
Ajax.Autocompleter
2006 Mar 13
0
Bug with Ajax.Autocompleter in Safari 2.0.3?
Hello All,
I''ve run across something that looks like a bug and wanted to throw
it out there for anyone else''s input before I submit a bug report and
patch. This is only observed in Safari 2.0.3 with Mac OS X 10.4.5 - I
haven''t tried any other versions of Safari.
I''ve got 2 fields:
text input 1
text input 2 with autocomplete
If you:
1. Enter some value
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
2006 Jun 21
0
Ajax.Autocompleter and onchange event
Hello,
currently I''m working on a JavaScript-on-screen-keyboard for use with touch screens. To autocomplete inputs I want to use the Ajax.Autocompleter control. The problem is that Ajax.Autocompleter only responds to onkeypress events made with a real keyboard, but my on-screen-keyboard causes onchange events when a letter is clicked and appended to the input field. So, is there a way to
2006 Feb 13
2
Ajax.Autocompleter is not a constructor
Hi Rails,
I am having trouble setting up an autocomplete text field. Using rails 1.0.0
and just trying to copy the simple scriptaculous demo
(http://demo.script.aculo.us/ajax/autocompleter) fails. My view and controller
are set up the same way.
In firefox 1.0.4 (and safari, don''t remember the version) I get the
Ajax.Autocompleter error in the javascript console when loading the
2006 Mar 02
2
Ajax.Autocompleter with an empty field
Hey guys,
I have a field that will have very few autocomplete options. I have
an ajax.autocompleter on it that works great, but I wanted to make it
start autocompleting as soon as the field is blur()ed, so that even
if the field is empty, the list will still appear. Like a combo box
in windows. How can I do this? Setting :min_chars => 0 (or even -1)
didn''t work...
-Josh
2005 Aug 02
4
Fwd: Re: disable ''tab'' key wish for incremental autocomplete of textareas
Hi Tim,
Thanks for the commentary, you bring a good point to
light: I think the asynchronous nature of AJAX needs
to be looked at more carefully in our UI assumptions.
The key difference between AJAX auto-complete and any
other browser/OS autocomplete is that we can''t
guarantee having the results ready by the time the
user wants to hit TAB. In the old days we used to
have everything
2005 Aug 24
1
Re: triggering autocomplete with a button press
I''ve got a search field on my site that uses an autocomplete to match
against search terms already input by the same user. That''s working
perfectly. However, I''d like to provide a little button next to the
search field that triggers the autocomplete, so that the users can
"browse" the list of past search terms. This behavior would be in
addition to the
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
2006 Mar 13
2
Autocomplete broken after update to Rails 1.0
When I upgraded to 1.0, I broke autocomplete on a field. I''ve done
everything that I can think of to fix the problem, but nothing has
worked. I''m able to recreate a simple autocomplete from examples on the
various tutorials, but my original code just will not work.
<input id="incident_first_party_name" name="incident[first_party_name]"
2005 Aug 01
2
disable ''tab'' key wish for incremental autocomplete of textareas
I''m absolutely in love with the incremental
autocomplete feature in the new scriptaculous.
My one wish would be for some way of disabling the TAB
key to prevent users from being able to tab out of an
autocompleting textarea. (If they''re using TAB to
select the autocomplete choice they end up tabbing
straight out of the input field if autocomplete
doesn''t find any