similar to: disable ''tab'' key wish for incremental autocomplete of textareas

Displaying 20 results from an estimated 4000 matches similar to: "disable ''tab'' key wish for incremental autocomplete of textareas"

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 15
5
Customized Autocompletion
In the customized autocomplete demo, how does it know what content to use as the value of the autocomplete? The returned UL has the name, email address and an image. Yet only the name is used. How does it do this? I''ve been trying to get something similar going all morning with little success. Also, what does :skip_style=>true do? I couldn''t seem to find a mention of it
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
2006 Feb 03
1
RE: autocomplete on safari = focus end of line
"easy" remedy? Don''t worry about Safari ;-) -----Original Message----- From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of Louis Walch Sent: Friday, February 03, 2006 1:45 PM To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject:
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]"
2006 May 05
7
Problem with autocomplete
Hello, I''m using scriptaculous library (in symfony) v. 1.6.1 Great library !!!!! I have a problem. While in IE6 it''s all ok (the autocomplete field works perfectly) in FF 1.5.0.2 the field apparently isn''t working. If I try the example in the scriptaculous homepage (v. 1.4.0_pre4 of Prototype) doesn''t work with FF, while the simple online demo, that uses
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
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
2012 Sep 20
7
jQueryUI autocomplete (Rails 3.1): can't get source as url to work
Hey, I''m able to duplicate everything in Ryan Bates'' screencast on jQueryUI autocomplete (#102<http://railscasts.com/episodes/102-auto-complete-association-revised>), except for the piece that calls the server for completion data. Here is my view html: <input data-autocomplete-source="/searches" id="search-markets"
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
2010 Jan 07
1
text field with autocomplete
Hey everybody, I am using text field with autocomplete in my posts new action. That works great. Response from autocompleter in firebug: POST http://localhost:3001/posts/auto_complete_for_tag_name 200 OK 68ms but if I use the same in edit action it fails and I got this error. POST http://localhost:3001/posts/781/auto_complete_for_tag_name 404 Not Found 81ms *** POSTS controller: *** def
2012 May 06
2
autocomplete word by word
Hi, I am trying to implement an autocomplete form with rails, I used jquery in a first version, to suggest phrases to user and it worked Now I am trying to have a service of autocomplete word by word, it means when the user it typing in the text area, I suggest only words and not phrases and when he finishes the word and starts a new one I do the same suggestion for the new word Is there a way to
2006 Jan 07
3
script.aculo.us: autocomplete does not work
I copied an exact copy of "http://demo.script.aculo.us/ajax/autocompleter" to my harddisc inclusive all .js and .css. Then I changed "new Ajax.Autocompleter(''contact_name'', ''contact_name_auto_complete'', ''/ajax/auto_complete_for_contact_name'', {})" to "new Ajax.Autocompleter(''contact_name'',
2006 Feb 13
2
would like to have the input text highlighted in the autocomplete div
Hello everyone, I would like to have the input text highlighted in the autocomplete div (similar to google suggest) Any ideas how I can get this working with the autocomplete class ? Thanks, Shyam
2006 Feb 11
1
autocomplete inside a table?
Has anyone tried putting an autocomplete field inside a table? I can do this successfully within FireFox, but in IE, it just doesn''t render the "drop-down" autocomplete div. Unfortunately, I don''t understand enough about why IE doesn''t work to know how to fix it. My autocomplete div CSS is: div.auto_complete { position: fixed; border: 1px solid #eee;
2007 Nov 15
4
Ajax.InPlaceEditor: controls.js update
I''m not sure if this is a bug or not, but I had to patch controls.js file to accommodate the idea that I had planned. I had to combine Ajax.InplaceEditor and AutoCompleter for a "tagging" feature at my office. With the autocompleter, I need to target an INPUT FIELD by ID. However the generated INPUT field from the Ajax.InPlaceEditor did not include this attribute in
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
2006 Apr 17
2
Problem w/ IE & Autocomplete
Anyone run into the problem where the autocomplete results div disappears when you click or click/drag on the scroll bars for the div? -- David Fitzhenry - http://fitzhenrys.blogspot.com http://www.gone2far.com _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
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 Nov 24
1
Autocompleting combobox: fact or fiction?
Hey, I''ve got a script.aculo.us autocompleting textfield that works wonderfully, but how do I make the value of the selected option submit with the form...for that matter, do autocompleting textboxes have ''option'' tags, or is what I want to do simply impossible 8[ Thanks, Gustav gustav-Y7mMFpLgOV2wB/GGPSRsq0B+6BGkLq7r@public.gmane.org -- Posted via