similar to: Script.Alico.us Ajax.AutoCompleter with PHP Debugger DBG not working

Displaying 20 results from an estimated 2000 matches similar to: "Script.Alico.us Ajax.AutoCompleter with PHP Debugger DBG not working"

2005 Aug 23
0
[script.aculo.us][Patch] Autocompleter.selectEntry()
I made a small patch to controls.js. I moved the line this.element.focus() from the end of selectEntry() to the end of updateElement(). The rationale is that if the user uses the options hash to override updateElement, he/she can choose which element to focus next, instead of being forced to the default. You can see an example on the wiki page (still under construction)
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 24
1
Autocompleter Problems
Hi, I''m trying to get autocomplete to work but have been having some problems. It seems that Ajax.Autocompleter(...) is not getting called. I''ve put in a alert in control.js: Autocompleter.Local = Class.create(); Autocompleter.Local.prototype = Object.extend(new Autocompleter.Base(), { initialize: function(element, update, array, options) { window.alert("GOT
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 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
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 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 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
2006 Jan 22
1
Dynamic parameter to autocompleter
Hi All Is there any way to pass a dynamic parameter do AutoCompleter URL? I want to pass the current text on autocompleter input field plus a parameter "last", with data from field "last" When i try to use "parameters" option, they get only first value of field "last", not dynamicaly. Thanks.
2005 Aug 05
2
Quick Question on Autocompleter Parameters
Hello, Is it possible to send the current value of a second form element with the AJAX request on the Autocompleter? At the moment, I initialise the Autocompleter on page load, so any parameters passed in the constructor are given the value set at page load time. I need to obviously pass in the value of the second form element when the autocompleter is called. Does this function already exist,
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
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
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
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 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 Dec 01
0
AutoCompleter message div not hiding
Hello, I have a problem with the AutoCompleter, specifically the div that holds the return values. It doesn''t get hidden until the page has correctly loaded, so in a page that makes cross-server JS calls the div is visible, and covers content, while the page is loading fully. I managed to circumvent this problem in Mozilla by specifying the visibility of the div in a CSS document to
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 Dec 22
0
RE: 3D acceleration
Couldn''t we approach it from a different perspective - the host drivers that we can modify could be changed to start with a higher memory address, like (if we had a 512MB card) 256MB-xx and the unmodified drivers could use 0-256MB and be "told" that they have 256 MB. In other words, we could let the drivers work unmodified but use less memory so that we have some still available