[jQuery] Autocomplete plugin compatability with jQuery 1.4?

2010-01-19 Thread Anthony Rayner
Hi all, We're using Jörn Zaefferer's awesome 'Autocomplete' plugin and wondered if anyone knows if it is compatible with jQuery 1.4? Be very intereseted to find out. Many thanks. Anthony.

[jQuery] autocomplete plugin not working in firefox

2009-12-30 Thread mary ann
I'm using the autocomplete plugin. The following script works in IE, but doesn't work in Firefox. It doesn't appear that these are even being triggered. So when the page displays in Firefox, the searchStudents textbox has no autocomplete associated with it. $(document).ready(function() { $

[jQuery] jQuery AutoComplete plugin & url problem

2009-12-25 Thread wenyus
I am using a jQuery AutoComplete plugin. My code is not working: var jj=$("#region_area").val(); $("#code_area").autocomplete( "codearea.php?id="+jj , {autoFill: true,matchContains: true}); This also not working: var jj=$("#region_area").val();

[jQuery] autocomplete plugin : detecting initial value problem, or how to programatically set the value

2009-11-27 Thread j.alkjaer
Hi there, We are using the rather nifty autocomplete plugin from http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ but have run into a problem $("#autocomplete").result( function(event, data, formatted) { alert(formatted) }).autocomplete(["c++", "java", "php", "coldfus

[jQuery] Autocomplete plugin not working with $.ajax?

2009-11-17 Thread Teddy Hong
here the code // if I type like below code, auto complete it's show.. $('#edit-submitted-order-no').autocomplete(["one","two","three"]); // but if I type like below code, auto complete not showing... why? anybody can help?... thanks $.ajax({ type: "POST", url: "test.php",

[jQuery] jquery autocomplete plugin - hardcoded overflow: auto

2009-10-14 Thread Rick Strahl
I'm taking a look at the jQuery autocomplete plugin and it works great for the most part except that it's generating scrollbars on both sides of the drop down list. Unfortunately this can't be overridden (AFAIK) via the stylesheet provided because the code apparently hard cod

[jQuery] Autocomplete plugin - varying the ac_results class for different instances

2009-10-07 Thread Nick
I've been using the jquery autocomplete plugin by Jorn Zaefferer (thanks for the nice work). My problem is that results are returned in a class="ac_results", and I'd like to edit this class name at will with the initialization of every instances so I can put them into

[jQuery] Autocomplete plugin: results as table?

2009-10-05 Thread Maarten
Hello, For a project I am working on I've successfully implemented the autocompleter (http://docs.jquery.com/Plugins/Autocomplete) and although it works like a charm, I would like to give the results a different markup. Currently, all rows are displayed as LI elements which makes perfect sense, b

[jQuery] Autocomplete plugin - customization

2009-09-14 Thread Althalos
Hi I'm trying to make a custom hack to the autocomplete plugin. I want it so that when you select a suggestion I can separate the data in that suggestion and insert parts of it into four different elements. I'll use split to get the data into an array and then use the Val function to set the valu

[jQuery] Autocomplete plugin - Hide completion list on Enter

2009-09-07 Thread janid1967
Hi, I've just started using the jQuery Autocomplete plugin (http:// docs.jquery.com/Plugins/Autocomplete). I get my completions from a serverside service. Currently I'm using the option selectFirst: false. When I'm using Enter without selecting from the completion list, this

[jQuery] Autocomplete plugin onclick event

2009-09-03 Thread Searcher
Hi, I'm trying to use the Autocomplete plugin from http://docs.jquery.com/Plugins/Autocomplete in a pseudo select box. I'd like the suggestions to appear when the user clicks on the appropriate arrow. $('#input').autocomplete(['0','1','2','3','4','5','6','7','8','9'], { minChars: 0 }); $('#inpu

[jQuery] Autocomplete plugin: Google Chrome - Focus issue with the scrollbar

2009-08-28 Thread varun shankar
I am using jQuery 1.3.2. There is an input field in a form. Clicking on the input field opens a div as a dropdown. The div contains a list of items. As the list size is large there is a vertical scrollbar in the div. There is a blur event on the input field, to close the drop down when clicked o

[jQuery] autocomplete plugin error callback?

2009-07-09 Thread Jan
Hi, i'm currently using the autocomplete plugin in my project and it works great. However I would like to be able to specify an error callback (probably just forwarding the error callback from the ajaxrequest would suffice).. Is it possible to get this implemented in the official version? If i'm

[jQuery] AutoComplete Plugin + Json not work in IE!

2009-06-19 Thread DaNieL
Hy guys, im new in jQuery ;) My problem is the autocomplete plugin: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ It works very well and i'll find it much usefull, but i got a problem with it.. Using the remote procedure (ajax requests), if the returning value from the script i

[jQuery] AutoComplete Plugin + Json not work in IE!

2009-06-19 Thread DaNieL
Hy guys, im new in jQuery ;) My problem is the autocomplete plugin: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ It works very well and i'll find it much usefull, but i got a problem with it.. Using the remote procedure (ajax requests), if the returning value from the script i

[jQuery] Re: Help required on JQuery Autocomplete plugin

2009-06-05 Thread MorningZ
Why are you also manually binding a keypress event when the autocomplete plugin already does so? On Jun 5, 6:46 am, Azzu wrote: > Hey guyz need some help with JQuery. I have a requirement in my > project to provide an autocomplete feature for a textBox like the one > recently applied on google.

[jQuery] Help required on JQuery Autocomplete plugin

2009-06-05 Thread Azzu
Hey guyz need some help with JQuery. I have a requirement in my project to provide an autocomplete feature for a textBox like the one recently applied on google. I need to fetch data on each keystroke so I am calling a JQuery fuction on keypress. The problem is the Autocomplete feature gets trigge

[jQuery] Autocomplete plugin for multiple form fields from a JSON source [autocomplete]

2009-04-15 Thread tatlar
Hi there, I have a nicely formatted JSON file that looks like: { "stations" : { "F07A" : { "calibration" : "1212797922", "construction" : "1152736320", "calibrationplot" : 158922, "service" : [ "1186011098", "1209718352",

[jQuery] Autocomplete plugin help: keyboard selection not working

2009-04-06 Thread tom
I'm unable to make the keyboard selection of suggestions from the dropdown work in my project, otherwise it works fine and selection with the mouse is possible. I'm using safari 3 and ff3. Keyboard selection in the demos is working fine, so this seems not to be a browser issue. I've checked that

[jQuery] autocomplete plugin with extraparams and onSelectItem

2009-02-20 Thread flanders
Hello Group, i need an Autocomplete Plugin for jQuery. The Plugin have to handle extraParams and a "onSelectItem". i only found many plugins that can only handle extraParams OR onSelectItem! We have to build a Form like this: [country] [zip] [city] When coutry is selectet, the ajax have to give

[jQuery] autocomplete plugin from bassistance: up and down arrows

2009-02-15 Thread wongtsefei
Hello, I am using the v1.0.2 of jquery autoselect plugin authored by Jörn Zaefferer, on bassistance.de. First off, thank you for some great code. It provides some critical functionality for the website I am trying to design. Here is the issue that I am struggling with: the up and down arrow ke

[jQuery] connect a MySQL database to jQuery Autocomplete plugin by bassistance.de

2009-02-15 Thread Pj
Hello there, Can anyone please advise me on how to connect a mysql database with the jQuery Autocomplete plugin by bassistance.de ?I do not wish to have a js/php file with pre-defined tags. Thanks in advance.

[jQuery] autocomplete plugin by bassistance - loading of huge number of records

2009-01-28 Thread Saumin
hi, we are using the autocomplete plugin by bassistance.de. Our business people want the users to search database with half a million rows. We have minChars set as 3, but then also some combinations get around 5000 rows. In that case, the user has to wait for at least 20+ seconds. I know that the

[jQuery] Autocomplete plugin rare behaviour

2008-12-30 Thread R0bb13
Hi I'm using the autocomplete plugin to edit the name of a product in a CMS. When the name field (with autocomplete) is empty the autocomplete works perfectly. However when the field is not empty and you remove the content the suggestions don't appear but the ajax request retrieve the correct dat

[jQuery] jquery autocomplete plugin

2008-12-30 Thread Relez
Hi list, I need some help with autocomplete plugin. I have two text field (name and surname) and I need to add to the name field the autocomplete like this: When the user start writing on it, it shows the coincidences and when he select the correct item the surname field most be filled too. For e

[jQuery] Autocomplete plugin: Function on result select

2008-12-19 Thread patrick91
Hi, i need to compile an hidden input when a value from the autocomplete list is selectedbut I don't know how can I do it? Can you help me? thanks

[jQuery] autocomplete plugin - newbie question

2008-12-02 Thread Casey Wise
You guys, I really dig working with jQuery, very powerful stuff. I've been trying to implement the autocomplete plugin but I don't know how to ask this question, or google what I need to know. We have 6000 staff (records) here on campus and we want to be able to search them by their first & last

[jQuery] Autocomplete PlugIn: Some Questions

2008-07-22 Thread Stefan Sturm
Hello, I'm testing the Autocomplete PlugIn, and now I have some questions. 1.) Autofill seams not to work for me. When I select an entry, wirde text is display in the textbox. 2.) Is it possible to display icons in the result List? 3.) What is the parse function for? I take my code from the js

[jQuery] Autocomplete plugin: Modifying how the input JSON is read

2008-07-22 Thread Magnus
Hi, I use the autocomplete plugin, but don't have a JSON that consists of an simple array with the results. I get the JSON directly from a SPARQL end point, so I don't have the option to format it at that point. I want to modify the autocomplete plugin so that it handles the following JSON: {

[jQuery] Autocomplete Plugin: Expand DIV with image and link

2008-07-14 Thread Michèle
Hi! I'm using the amazing autocomplete plugin and it works perfectly. Now I'm trying to expand the div containing the ul with the results and add a linked image (e.g. powered by ...) after the ul. The HTML code between and should be something like this: http://www.xxx.com";> Unfortunately, I

[jQuery] autocomplete plugin not displaying menu

2008-06-21 Thread Eeby
Hi. I'm trying to get the autocomplete plugin working, this one: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ I'm finding that in Mac FF no menu appears at all when I start typing (even though I know there are matches). In Safari a menu appears off to the left of the input fi

[jQuery] Autocomplete plugin problem please help

2008-06-12 Thread Jaswinder
so basically the original code at http://docs.jquery.com/Plugins/Autocomplete#Example is [code] http://www.w3.org/TR/html4/loose.dtd";> http://code.jquery.com/jquery-latest.js";> http://dev.jquery.com/view/trunk/ plugins/autocomplete/demo/main.css" type="text/css" /> http://dev.jquery

[jQuery] autocomplete plugin search help

2008-06-11 Thread Jaswinder
im a total noob to jquery but i wat to search feature like on facebook ive found a plugin that says it does this but cant figure out how to get it to work please help start off as in the demo shown it is : [code] http://www.w3.org/TR/html4/loose.dtd";> http://code.jquery.com/jquery-latest.js"

[jQuery] Use jquery autocomplete plugin with Multiple Textboxes (Textboxes are generated using Javascript)

2008-05-29 Thread Ashlak
Hello, I have this code to generate Textboxes at the click of a Button - - function addRowToTable() { var tbl = document.getElementById('tblSample'); var lastRow = tbl.rows.length; // if there's no heade

[jQuery] Re: Jquery Autocomplete plugin question = Can I feed it an xml or js file for the completion items?

2008-05-20 Thread mickes
Nevermind, I found the localdata.js file!!! On May 20, 8:00 am, mickes <[EMAIL PROTECTED]> wrote: > Has anyone used the Autocomplete plugin by feeding it an xml file not > generated from a sql result? > > I am writing a Greasemonkey script to autofill an input box from a > list of possible sele

[jQuery] Jquery Autocomplete plugin question = Can I feed it an xml or js file for the completion items?

2008-05-20 Thread mickes
Has anyone used the Autocomplete plugin by feeding it an xml file not generated from a sql result? I am writing a Greasemonkey script to autofill an input box from a list of possible selections that I would like to store in an xml file or a js file inside the Greasemonkey script. Anyone have a t

[jQuery] [Autocomplete Plugin 1.0] Use of *.css files

2008-04-28 Thread dineshv
The autocomplete plugin comes with two css files - main.css and jquery.autocomplete.css. I'm guessing that the main.css is for the demo script only - is that right? What is the jquery.autocomplete.css used for and is it necessary? The reason for asking is that I'm getting a conflict between my

[jQuery] Autocomplete plugin modifications

2008-04-28 Thread Corey Coto
Hi, I made a couple of modifications to the jQuery Autocomplete plugin (Release 1.0). I am using the plugin on a multiple entry field and quering a web service. 1. Myself and others have run into an issue which prevents users from inputting items not in the autocomplete selection list. The

[jQuery] Re: jQuery Autocomplete Plugin Efficiency in AutoSuggest Brand Spanking New

2007-09-18 Thread Alexsandro_xpt
No yet, but in next time I will post something ;) On 18 set, 01:54, edavis <[EMAIL PROTECTED]> wrote: > I am looking into refactoring AutoSuggest to use jQuery. Any progress > on your side? > > On Sep 10, 2:07 pm, Alexsandro_xpt <[EMAIL PROTECTED]> wrote: > > > Please.. somebody...

[jQuery] Re: jQuery Autocomplete Plugin Efficiency in AutoSuggest Brand Spanking New

2007-09-18 Thread edavis
I am looking into refactoring AutoSuggest to use jQuery. Any progress on your side? On Sep 10, 2:07 pm, Alexsandro_xpt <[EMAIL PROTECTED]> wrote: > Please.. somebody...

[jQuery] Re: jQuery Autocomplete Plugin Efficiency in AutoSuggest Brand Spanking New

2007-09-11 Thread Alexsandro_xpt
Please.. somebody...

[jQuery] Re: jQuery Autocomplete Plugin Efficiency in AutoSuggest Brand Spanking New

2007-09-09 Thread Alexsandro_xpt
No body? On 7 set, 15:08, Alexsandro_xpt <[EMAIL PROTECTED]> wrote: > Hello everybody, > > I need/would like get (jQuery > Autocomplete)http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ > efficiency and make a new AutoSuggest(http://www.brandspankingnew.net/ > archive/2006/08/ajax

[jQuery] Re: jQuery Autocomplete Plugin Efficiency in AutoSuggest Brand Spanking New

2007-09-09 Thread Alexsandro_xpt
Hellow???

[jQuery] Re: jquery autocomplete plugin with php

2007-09-09 Thread Saidur
Thanks for the help. On Sep 8, 12:33 am, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > Giovanni Battista Lenoci schrieb: > > > Saidur ha scritto: > >> Hello , > > >> I am a new bie in jquey. I need tutorial to work on jquery auto > >> complete plugin with php . > >> I need code. That i will test

[jQuery] Re: jquery autocomplete plugin with php

2007-09-07 Thread Jörn Zaefferer
Giovanni Battista Lenoci schrieb: Saidur ha scritto: Hello , I am a new bie in jquey. I need tutorial to work on jquery auto complete plugin with php . I need code. That i will test . Thanks I used this one, it has documentation and examples. http://www.dyve.net/jquery/?autocomplete

[jQuery] jQuery Autocomplete Plugin Efficiency in AutoSuggest Brand Spanking New

2007-09-07 Thread Alexsandro_xpt
Hello everybody, I need/would like get (jQuery Autocomplete) http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ efficiency and make a new AutoSuggest(http://www.brandspankingnew.net/ archive/2006/08/ajax_auto-suggest_auto-complete.html) because it AutoSuggest is a nice design, someb

[jQuery] Re: jquery autocomplete plugin with php

2007-09-07 Thread Giovanni Battista Lenoci
Saidur ha scritto: Hello , I am a new bie in jquey. I need tutorial to work on jquery auto complete plugin with php . I need code. That i will test . Thanks I used this one, it has documentation and examples. http://www.dyve.net/jquery/?autocomplete Bye

[jQuery] jquery autocomplete plugin with php

2007-09-07 Thread Saidur
Hello , I am a new bie in jquey. I need tutorial to work on jquery auto complete plugin with php . I need code. That i will test . Thanks

[jQuery] Autocomplete Plugin Issue With IE6

2007-07-12 Thread Jeff Fleitz
I am using Jörn's Autocomplete alpha plugin (not from the svn repository) along with jquery 1.1.3.1 and am having some problems in IE6 related to selected options from the drop downs. The autocomplete control works fine if I use the down arrow to navigate to a choice. However, if I use the mouse

[jQuery] autocomplete plugin - disabling click event handlers

2007-05-14 Thread Jose
Hi, Is there a way to disable the click handler so that any links created with formatItem can be clicked ? thanks

[jQuery] autocomplete plugin - filtering a table

2007-05-13 Thread Jose
Hi, would it be possible to have an option so that the result output is a table instead of a list ? This is useful when you just want to filter a table (or use the table row to select fields for a form). Related to this, how can I set the width of the results so that is wider than the autocomple

[jQuery] Autocomplete plugin problem

2007-04-25 Thread Stefan Kilp [sk-software]
hi, i did some test/demos to play with autocomplete plugin. http://kilp.net/test/autocomplete/autocomplete-demo.html i want a kind of highlighted searchresult. for that reason my php script (sever-side) generates data that looks like | | id1 \n | | id1 \n ... i want the second it

[jQuery] Autocomplete plugin status2

2007-04-14 Thread Jörn Zaefferer
Hi folks, for anyone interested in the progess of the autocomplete plugin I've uploaded the current demo: http://jquery.bassistance.de/autocomplete/ There are already a few notable improvements: * completeting multiple values works much better, whitespace is ignored and cleaned up wh

[jQuery] Autocomplete plugin

2007-04-08 Thread Jörn Zaefferer
Hi folks, especially Dan and Dylan, I'm in the process of evaluating jQuery's autocomplete plugins. Dan's port of Dylan's version provides most of the stuff I'm interested in, but lacks support for entering multiple items in one field. I found another mod for that purpose, again lacking some