Displaying 20 results from an estimated 4000 matches similar to: "Scriptaculous Autocompleter and new values"
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
2005 Jul 24
0
scriptaculous autocompleter on IE
Hi all,
I''ve noticed slightly erratic behaviour with the autocompleter on IE.
In controls.js, the render method calls the (IE only) scrollIntoView
method, which causes the element to be moved to the bottom or the top
of the viewport (by passing in true or false, bizzarely).
This is perfectly acceptable behaviour for render in general, but this
causes the dropdown list to jump around as
2006 Jun 19
2
Autocompleter enhancement feature request
Hello,
I have created a ticket for an enhancement of the autocompleter to show the
options immediately when the field gets focus. Right now at least one
character must be typed for autocomplete to kick in.
http://dev.rubyonrails.org/ticket/5435
I have also made some code changes directly in the script
Event.observe(this.element, "blur", this.onBlur.bindAsEventListener(this));
2008 Apr 10
1
help on ajax autocompleter
the div list of words doesn''t get updated
# controller
class Words < R ''/words''
def get
("word01".."word20").each{|w| (@words ||='''') << "<li>#{w}</li>"}
render :_list
@words
end
end
#views
#
def layout
html do
head do
link :rel
2006 Mar 07
0
Ajax.Autompleter not working on IE
I have IE 6.0.2 on an old Win 98 machine (that sounds like a vacuum
cleaner when running), but I''m developing with FireFox and on Mac and
Linux where things seem to work fine.
On IE my Ajax.Updater code and my scriptaculous effects are working
fine, but my autocomplete fields are not. I assume I''m doing
something wrong in setting up the field:
I use this on my form:
<input
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 May 16
0
in_place_editor with local autocomplete
Hi Rails gals n guys
I am trying to enhance the "Lightning-Fast JavaScript Autocompletion"
rails recipe. For those that do not have the pdf-book the recipe
explains how to use a javascript array for an auto-complete text field.
I want to combine this with the in_place_editor call. My current
(unworking) code:
<!-- Load the array for autocomplete -->
<script
2006 Jan 06
3
Gianni
|Hi i''m New
First Question:
to use a script.aculo.us it needs to include prototype.js and
scriptaculous.js.... but doesn''t work!!;
instead ||using ||scriptaculous.shrunk of Alister Cameron, work;
what are the expedient to use to include the ||scriptaculous.js ?
Second question:
in script.aculo.us |Ajax.Autocompleter
2006 Jan 10
0
Changes to Autocomplete?
Hi all,
Can anyone confirm if anything has changed in Ajax.Autocompleter (or
Autocompleter[.Base]) in 1.5.1 since 1.5? I've updated to this
version and either something has changed (unlikely) or I've made a
change somewhere that's borked it (much more likely). Events aren't
firing on the text box when I enter input or blur away from the
control ...
Many thanks!
Regards,
Cam
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 Jun 21
11
scriptaculous question
Hello everybody.
I''m wondering if there is away with scriptaculous to update multiple form
fields with data after finishing an autocomplete request.
Heres an example.
Joe BlowSchmoe fills in his name and starts to type in the customer number,
he selects the approprate customer number from autocomplete list, and bam
the address associated with the customer number is populated into the
2006 Apr 15
1
Begin with Autocompleter
Hi list:
I''m a young developer that need a little help with scriptaculous "Autocompleter". I work with PRADO framework (http://www.xisc.com) and PHP as a script language. Now this is a little function in JavaScript for make a AJAX call and show the results without reload the entire page. See below:
1 function makeRequest(url,element) {
2 var http_request = false;
3 if
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
2008 Feb 08
0
Autocompleter - get rid of default selection?
Running Scriptaculous 1.8.1 I''m experiencing an issue with the
autocompleter.
As part of a search page, I''ve added and autocomplete field. During
entering text, the first entry in the autocomplete list is
automatically selected- once the user hits enter (regardless if that
is the entry he''s looking for or not), the form is submitted.
I''m looking for a way 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:
2006 Mar 13
0
RE: Autocompleter that auto scrolls through resu lts..
> the scriptaculous autocompleter already does this.
I don''t think so ? What I mean is if the user moves through the results
using the arrows keys and the results div is bigger than the screen height,
then trigger scrolling on the results div itself ?
---------------------------------------------------------------------
Hi All
Before I investigate further, has anyone implemented an
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
2005 Sep 15
2
IE iframe bug with Autocompleter over HTTPS
I ran across an issues using the Autocompleter over HTTPS in IE (6.0
in WinXP Pro SP2).
I plan to submit a bug report to the Ruby on Rails trac, but first I''d
like "to discuss this on th[is] Mailing List beforehand, maybe it''s
already known and in the works, or it isn''t a bug" (per
http://wiki.script.aculo.us/scriptaculous/show/BugReports)
The autocomplete
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 Sep 16
4
Autocompleter handling multiple completes
Has anyone extended the Autocompleter to do multiple auto-completes in a
single input field? I''m looking to achieve similar functionality to the
del.icio.us <http://del.icio.us> post page which allows multiple
auto-completes of tag names in the tags input field.
cheers,
Rob
-------------- next part --------------
An HTML attachment was scrubbed...
URL: