similar to: Autocomplete and Firefox

Displaying 20 results from an estimated 2000 matches similar to: "Autocomplete and Firefox"

2005 Sep 26
1
[Fwd: [Rails] Re: Autocomplete - setting a second value?]
Yeah, right... I posted this to the Rails mailing list. Sorry for people who see duplicate posts. -------- Original Message -------- Subject: [Rails] Re: [Rails-spinoffs] Autocomplete - setting a second value? Date: Mon, 26 Sep 2005 10:05:24 -0400 From: Fran?ois Beausoleil <fbeausoleil@ftml.net> Reply-To: rails@lists.rubyonrails.org To: rails@lists.rubyonrails.org References:
2009 Jul 07
0
[PATCH server] Update app to work with rails 2.3.2
Note that this does not fix gettext for app, that will be done separately in another patch as F10/F11 require different setups for that. In the meantime gettext works if manually changed in environment.rb to gettext_rails instead of gettext/rails Signed-off-by: Jason Guiditta <jason.guiditt at gmail.com> --- src/app/controllers/application.rb | 200 --------
2005 Aug 17
3
Ajax.Autocompleter
I have been working with the Ajax.Autocompleter for about a day so forgive my ignorance. Is there any value in adding additional callbacks. I want perform an action when the user selects a choice. So I was thinking of adding an option {select: function(selectedElement) {}} similar to the callbacks on Ajax.Request in the prototype library. Call me out if you think I am crazy my feelings
2006 Jan 10
0
Customizing autocomplete to update more than one value upon vaule select
Good day. Currently I have a system that will successfully add a row to a table. Each row in this table will represent a new product being added to a purchase order. The user can enter a quantity and then select a product code. The product code is the auto_complete field. This field works. However, once the user selects a product code then the values for the product description, buy price, and
2006 Mar 29
0
auto_complete_on_select don''t work correctly
Hi, i hope that''s the correct place for this question. I must update two input text from autocomplete. The list is, for exemple: <ul> <li> <span class="comune_name">pippo</span> <span class="lat" style="display:none">1.2</span> <span class="long" style="display:none">3.0</span>
2005 Sep 22
6
Autocomplete - setting a second value?
I''m using the autocomplete function, and need a way to grab a second value from the ajax request... an example would probably speak better: This is my HTML: <input name="CustomerName" id="CustomerName" type="text" /> <div id="CustomerList"></div> <input name="CustomerID" id="CustomerID"
2005 Dec 08
4
AutoCompleter afterUpdateElement
Any ideas how I can submit say, a person ID instead of the person''s name on an autocompleter input field? Surely this is a common need. Thanks! Daniel
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 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 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
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
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 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
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
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
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 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
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
2006 May 25
0
Fwd: [Ruby on Rails] #5181: Autocomplete: How do i format the text in the drop down?
Howdy... How can the text be formated on the downloadable sample (\scriptaculous-js-1.6.1\test\functional\ajax_autocompleter2_test.html)? In your downloadable demo... the format of the drop down (in the txt area) is a ordered list.. where and how is this formatted? and is it possible to use a CSS on it? If so.. how would i do that? I like the formatting you have on your demo
2007 May 04
0
Mixing InPlaceEditor with AutoComplete
Hi I''d like to be able to open a field for update , with InPlaceEditing Features ... On the displayed TextField i want to plug : 1) AutoCompleter 2) (if possible) ModelAutoCompleter Someone already did that? I ''m going to begin to extend the InPlaceEditor (InPlaceEditorWithAutoCompleter) ... then i''ll see for ModelAutoCompleter Laurent