[jQuery] [Autocomplete]autocomplete in textarea

2009-09-22 Thread td liao
hi guys i had used jQuery autocomplete in a textarea i want the suggest results show in where i'm typing, not outside the textarea. i checked jQuery autocomplete source code, finding in line 722 is the core code. show: function() { var offset = $(input).offset(); element.css

[jQuery] Autocomplete

2009-09-21 Thread Asa Carter
How do I use the highlight function in the auto complete plugin? I wish to replace strong/strong with span class=blah../span Thanks Asa

[jQuery] (autocomplete) Issue with Plugin JQuery Dialog 1.7.2

2009-09-21 Thread Arun
Hi, We are using autocomplete plugin with Jquery 1.3 and Jquery UI 1.7.2. When the plugin is used with Jquery UI Modal dialog we are getting auto suggest layer behind the modal layer. We feel itz due to z-index of dialog. Please let us know if there any way fix this

[jQuery] [autocomplete] Does it support version 1.3.2?

2009-09-19 Thread Catherine
Same as subject I'm having trouble using it with jQuery 1.3.2. Please advice.

[jQuery] Autocomplete onItemSelect issue

2009-09-17 Thread Matthaus
Hi all, I'm using a modified autocomplete from http://www.pengoworks.com/workshop/jquery/autocomplete.htm and am having some issues using the onItemSelect option. It works, but seems to be calling the function once when autocomplete is called to during $(document).ready. In the code below,

[jQuery] (autocomplete) how to have autocomplete use dynamic data (for implementing a search engine's entry field)

2009-09-16 Thread Mike Wertheim
I'm looking into using the autocomplete plugin from http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/. The provided examples all use static data. What I want to do is to mimic the behavior that search engines (like Google, Yahoo, Bing, etc.) use for the auto-complete on their

[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

[jQuery] Re: JQuery Autocomplete Values/Presetting

2009-09-11 Thread Erick
, 2009 at 19:42, Erick erickwo...@gmail.com wrote: I'm using the JQuery Autocomplete plug-in and having a great deal of difficulty setting the value of the field either in advance (before making it an autocomplete) or after page load. To start, I have a standard text box and was just echoing

[jQuery] Re: JQuery Autocomplete Values/Presetting

2009-09-11 Thread alexbodn . groups
10, 2009 at 19:42, Erick erickwo...@gmail.com wrote: I'm using the JQuery Autocomplete plug-in and having a great deal of difficulty setting the value of the field either in advance (before making it an autocomplete) or after page load. To start, I have a standard text box and was just echoing

[jQuery] [autocomplete] Autocomplete selection with mouse causes blur while with keyboard doesn't

2009-09-11 Thread Joel D'Souza
I intend to use the blur function when a selection is not made to clear some hidden field values. And the result function to set/update those hidden fields when a selection is made. With the mouse selection, as both blur and result are triggered simultaneously, a race condition occurs. This

[jQuery] [Autocomplete] result accompanied with blur cause non-deterministic behavior

2009-09-10 Thread Joel D'Souza
I have the blur event hooked in to reset hidden field values. The autocomplete plugin is set up as below and produces the behavior described in the comments: $(#test).autocomplete(data, { formatItem: function(item) { return item.text; } }).result(function(event, item) { // This

[jQuery] JQuery Autocomplete Values/Presetting

2009-09-10 Thread Erick
I'm using the JQuery Autocomplete plug-in and having a great deal of difficulty setting the value of the field either in advance (before making it an autocomplete) or after page load. To start, I have a standard text box and was just echoing a value from php into the value= param. Then, on page

[jQuery] Re: JQuery Autocomplete Values/Presetting

2009-09-10 Thread alexbodn . groups
preset Two as value for autocomplete field, and the 2 for the code field. then add a results trigger to set the value param received to the code field. On Thu, Sep 10, 2009 at 19:42, Erick erickwo...@gmail.com wrote: I'm using the JQuery Autocomplete plug-in and having a great deal

[jQuery] [Autocomplete] Receiving data in XML

2009-09-09 Thread Joao Gilberto
Hi, First of all, I want to thank you about your excellent Autocomplete plugin for jQuery. So, I plan use your component in my open source framework called XMLNuke. This framework produces XML, so I made some changes in jQuery Autocomplement plugin to support receive XML data. Here an Example:

[jQuery] [autocomplete] key - value

2009-09-09 Thread TiGeRWooD
Hi, Is there a way to use $key = $value 45 = 'some text' And search in $value (some text) but when I select 'some text', it's the $key (45) as input value instead 'some text' ? Thanks in advance. ps : sorry for my poor english.

[jQuery] [autocomplete] a few improvements to autocomplete

2009-09-09 Thread alexbodn . groups
hello friends, i have done a few improvements to the autocomplete module, to fix problems and improve functionality: added selectOnly option to autoselect a result if there's only one. this may save you a click. moved the loading indicator to the left side, in case the field is rtl.

[jQuery] [autocomplete] Enable creation of new list entries?

2009-09-09 Thread starkos
I would like to add a Create new... item to my autocomplete lists to give users a way to create new items. This item would stick at either the top of the bottom of the suggestion list and, when selected, fire a callback where I could display a dialog to collect the information for the new entry,

[jQuery] [autocomplete] problem when using inside a popup

2009-09-08 Thread Kevin
Hello, When I use jquery.autocomplete.js on a field that lives inside a jquery modal popup, the autocomplete list doesn't stick to the textbox when scrolling with the scrollwheel of the mouse. Anyone knows if this is a bug, or a configuration issue? best regards! Kevin

[jQuery] [Autocomplete] Detect when autocomplete list is visible

2009-09-08 Thread CharlesW
Hello, I'm detecting Enter/Return keyup requests, what's a good way to ignore them when the autocomplete list is visible? I tried using $('.ac_results').css('display'), but that doesn't work reliably (it's always none in the keyup handler). Any ideas appreciated! -- Charles

[jQuery] autocomplete accents

2009-09-07 Thread sebastien creme
Hello, i'm trying to use automplete plugin and deal with accents in data and in search. The main problem is how to display 'déb...' or 'dèb...' when user inputs 'deb'. I have started to modify autocomplete code in order to make this happen. The main parts are in matchSubset and highlight

[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 submits my form

[jQuery] Autocomplete + JSON + 's.toLowerCase is not a function': FIXED!

2009-09-05 Thread Ash
A little bug I ran into, and the fix for it that I found, in case anyone else has similar issues: I'm using the jQuery Autocomplete plugin, with a JSON data source. This is done by adding a custom parse method to the initialization, as such: input.autocomplete(ac_url, { limit: 10

[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 });

[jQuery] Autocomplete: implement result() to link a selection

2009-09-03 Thread ripcurlksm
I have autocomplete working for a list of colors(red, green, blue, etc). I created an array of $id's to match each color. For example if someone types and selects red, I want it to go to a page like mypage.php?id=1. How can I (1) parse the ids in the array and (2) implement the result()

[jQuery] [Autocomplete] Autofill Comma Seperator Issues

2009-09-01 Thread Mil
Hi, I am trying to use this autocomplete http://docs.jquery.com/Plugins/Autocomplete but I'm having some issues with it. I'm trying to create a simple tag autocomplete feature. This is what I want to type (Example 1) TextArea: Cake, Ca, Caldren, Calimari, This is what I get (Example 2)

[jQuery] (autocomplete) Is it possible to cache the empty results ?

2009-08-31 Thread mathieuuu
Hello, I am currently using the jquery autocomplete ($Id: jquery.autocomplete.js 5785 2008-07-12 10:37:33Z) with remote data. Obviously I did not disabled the cache and matchSubset option (all matches of foot are a subset of all matches for foo), which reduces the number of queries made

[jQuery] [autocomplete] how to disaply all options onFocus?

2009-08-31 Thread donal
Setting the min to 0 will dispaly all the optins if the user clicks the field a 2nd time. However, i'd like the options to display once the input has focus, or using a button. How can I do that? thanks

[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

[jQuery] There is a proble in IE7 with a jQuery autocomplete

2009-08-28 Thread Александр Туранский
Every time a key is up in Firefox autocomplete normally lists suggestions, but in IE7 it shows for a second the suggestions list and then hides it leaving me without a possibility to choose from amongst the suggested values. But if an array of values is small (up to aprox. 30 values max) it works

[jQuery] [Autocomplete] Input edit does not fire autocomplete.

2009-08-27 Thread RobGMiller
Coded the following in a page : var ArrayVariable = New Array(); $(document).ready(function() { $(#inputbox).autocompleteArray(ArrayVariable, { delay: 10, minChars: 1, matchSubset: 1, onItemSelect: selectItem,

[jQuery] [autocomplete 1.1] extend callback

2009-08-25 Thread steki
hi, i use the extraParams function to retrieve information from the current autocomplete control /* tabellenname aus input.name ermitteln, z.b. edit0_kontakt_id- kontakte */ extraParams: { tbl: function(elem) {

[jQuery] [autocomplete]

2009-08-25 Thread Mahmoud wagdy
we need to add a virtual keyboard to the same textbox which uses yours autocomplete plugin. is this applicable with your autocomplete plugin

[jQuery] autocomplete

2009-08-16 Thread ser999
I am new to using jQuery and the autocomplete widget (which is great). I would like to add a button with an event to show ALL availbale options. Kind of like regular dropdown element. Is there a way to do this? Thanks Sergey

[jQuery] [autocomplete] how to clear hidden key field when user changes text value?

2009-08-13 Thread Billy
Hi all, I'm using autocomplete plugin, when the user types something the backend responds value and key information (for instance: John|76178 Mike|87252 Peter|87511 Using .result I'm setting the key in a hidden field in my form. $('#autocompleteTextboxId').result(function(event, data,

[jQuery] [autocomplete] trigger event if user rejects all autocomplete otions

2009-08-11 Thread Ash
Does anyone have a library or patch to call a handler if a user leaves an autocomplete field without choosing one of the autocomplete options - i.e. they've entered free text. I'm working with an app that populates multiple fields from a single auto-complete value, and our latest requirement is

[jQuery] Autocomplete JSON filtering searches

2009-08-09 Thread sAmUrAi
I have a JSON dataset structured as follows { { city=value area=value } { city=value area=value } { city=value area=value } ... ... ... } I need two autocomplete inputs, - one allowing only selections of cities and - one allowing selection of areas of

[jQuery] [autocomplete] Missing space character in request

2009-08-08 Thread aw
Hi, Using the autocomplete plugin works fine. But submitted values are trimmed. Is it possible to send data with ending space characters like the escape function in JavaScript? Thanks.

[jQuery] [autocomplete]

2009-08-07 Thread Christer Bygdestam
Hi, I'm trying to get Joerns awesome autocomplete-plugin to work with UTF-8 but I've had no luck in making it work. Has anyone managed to query the backend using UTF-8 encodend characters? Right now I'm trying my best to decode the incoming string ie q=Östman but nothing happens? Do I need to

[jQuery] Re: JQuery autocomplete got broke after i update it.

2009-08-06 Thread pankaj sharma
Hi All, Can someone please help me to fix this issue? i am not sure if I am posting in the right alias? Thanks, Pankaj On Wed, Aug 5, 2009 at 9:02 PM, pankaj pankaj1...@gmail.com wrote: Hi All, After I update JQuery autocomplete plugin (jQuery UI Autocomplete @VERSION), I found one issue

[jQuery] JQuery autocomplete got broke after i update it.

2009-08-05 Thread pankaj
Hi All, After I update JQuery autocomplete plugin (jQuery UI Autocomplete @VERSION), I found one issue. The issue is as follows. When I type jua in the autocomplete field. Four matches are returned for users with the first name juan. Then add an n.Only the first match remains in the list. I

[jQuery] delete cache result of jquery autocomplete

2009-08-05 Thread Jaikit
I am using jquery autocomplete for my application. Problem: I get cached results returned from my autocompleter which I do not want. I am trying to manually clear the cache of autocomplete when onchange of select list. But I am not able to. I appreciate if any one can find me a way to delete

[jQuery] jquery autocomplete parameter query

2009-08-04 Thread anush
When I use mustMatch: true in my function, I am unable to select a few of the options. Any reason for that ? - Anush

[jQuery] [autocomplete] textarea - adding selections not only on the end

2009-08-03 Thread wiper
I would like to ask if anyone tried use this plugin like t9 in mobiles with textarea form. I am currently trying to use this plugin with my words database for suggesting right words. This is ok and is working if you write word after word and use suggest for last word. But if you need to add word

[jQuery] Autocomplete cache problem ( Urgent )

2009-07-28 Thread Vivek
Hi, I am using autocomplete plugin. I have one Search field upon which i have put the autocomplete and other a select box which have 3-4 values such as Vidoes, audios, images etc..., I am using Extrafield option to pass the select box's value to the PHP Script. It is working fine however i am

[jQuery] autocomplete

2009-07-27 Thread sush
Hi, I am using the autocomplete on local client array , and want know how can i allow user to key in the text if autotext could not find any results. your help is greatly appreciated. Thanks, sush

[jQuery] jquery autocomplete with dwr

2009-07-23 Thread renearaujo
Hi! first: someone know one great (simple and easy) plugin for jquery for autocomplete/suggestion ? second: someone use this plugin with DWR ? thanks :)

[jQuery] Re: jquery autocomplete with dwr

2009-07-23 Thread Ken
how to disable firebug. 2009/7/23 reneara...@gmail.com Hi! first: someone know one great (simple and easy) plugin for jquery for autocomplete/suggestion ? second: someone use this plugin with DWR ? thanks :) -- -- - Administrator : Ken Phan Websmater : www.goldengate.com.vn

[jQuery] Re: jquery autocomplete with dwr

2009-07-23 Thread renearaujo
sorry... i am beginner :) take it easy ;) On Jul 23, 2009 11:08am, Ken kenpha...@gmail.com wrote: how to disable firebug. 2009/7/23 reneara...@gmail.com Hi! first: someone know one great (simple and easy) plugin for jquery for autocomplete/suggestion ? second: someone use this plugin

[jQuery] [autocomplete] Dynamic textboxs

2009-07-22 Thread escriba
); } } // Button that adds textboxs dynamicly input type=button name=Button value=+ onClick=addRow ('authorsTable') / // Jquery autocomplete function call $(document).ready(function() { $(#bla).autocomplete(cities); }); NOTICE: I already have this working with fixed textboxs

[jQuery] [Autocomplete]

2009-07-20 Thread koichirose
Hello, I'm using jQuery Autocomplete ( http://docs.jquery.com/Plugins/Autocomplete ) to display results from a php page. Since that is my only field, I want to submit the form when I click on the result or I press the 'return' key. How do I do that? The result is showing something like

[jQuery] [Autocomplete] Form submit or link on mouse click or return key

2009-07-20 Thread koichirose
Hello, I'm using jQuery Autocomplete ( http://docs.jquery.com/Plugins/Autocomplete ) to display results from a php page. Since that is my only field, I want to submit the form when I click on the result or I press the 'return' key. How do I do that? The result is showing something like

[jQuery] autocomplete mustmatch problem [autcomplete]

2009-07-18 Thread rekna
I'm using jquery autocomplete 1.0.2. The autocomplete retrieves data from the server and the option mustmatch is set to true. My data on the server has a code field and a description, and I'm returning code+ +description|id an example of data returned by the server would be: FIN Finance|2 PER

[jQuery] [autocomplete] mustmatch problem

2009-07-17 Thread rekna
I'm using jquery autocomplete 1.0.2. The autocomplete retrieves data from the server and the option mustmatch is set to true. My data on the server has a code field and a description, and I'm returning code+ +description|id an example of data returned by the server would be: FIN Finance|2 PER

[jQuery] [autocomplete] How to send the partial word typed by user to ajax url?

2009-07-16 Thread SubhashPalsule
Hello Gurus, Is it possible to send the partial word typed by user to ajax url in bassistance.de/jquery-plugins/jquery-plugin-autocomplete/? This will help me to use the sql syntax - select abc from tab_name where abc like %user_word% and limit the results to speed up. Also, I have a select

[jQuery] Autocomplete --- Flickering Problem

2009-07-16 Thread AJ
Whenever I try to type something into the textbox with Autocomplete activated it gives me a flickering effect in IE and Firefox. Please help me solve this problem.

[jQuery] Autocomplete Focus Issue

2009-07-15 Thread jazz
Hi Folks, i have an issue with the autocomplete focus... i am unable to focus on the selected value..the value is when i selected one value it is displaying the previous one..i tried somany ways but found no luck.. Please refer my code once: jquery.autocomplete.js:

[jQuery] [autocomplete] Autocomplete bug for options.multiple along with bugfix

2009-07-15 Thread SolutionYogi
belong to the autocomplete list, the 'result' event doesn't fire. Click here to see the example code for the bug as well as the bugfix I created. I would appreciate if someone can look at the code and tell me if I am fixing it in the right way. http://stackoverflow.com/questions/1046001/jquery

[jQuery] AUTOCOMPLETE

2009-07-14 Thread chinnakarup...@gmail.com
Hi, I wanted a dropdown as soon as I place my cursor in the input box (local values). I tried putting minChars as 0. It didn't seem to have much effect. I made the following change in the autocomplete code .click(function() { // show select when clicking in a focused field

[jQuery] Autocomplete issue

2009-07-13 Thread jazz
Hi Folks, i have an issue with the autocomplete focus... i am unable to focus on the selected value..the value is when i selected one value it is displaying the previous one..i tried somany ways but found no luck.. Please refer my code once: jquery.autocomplete.js :

[jQuery] Autocomplete selection Issue

2009-07-09 Thread jazz
Hi Can any body suggest me how to do this by jquery..i have seen some autocomplete examples but i am not getting the correct application like this: first we type a letter,then it will show a list from that we scroll down the mouse(either mouse or keypad) the highlighted value should be placed in

[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

[jQuery] [autocomplete] Turn off cachi ng (still caches) för queries with charaters 'å', 'ä' and 'ö'

2009-07-09 Thread cl2csand
When I use the autocomplete plugin with cacheLength set to 1 it still seems to caches som queries. Although I have only seen the problem with queries containing the characters (swedish) å, ä or ö. Maybe the problem lies there. To solve this I have to call the flushCache function first in the

[jQuery] [autocomplete] Adding custom data retrieval function

2009-07-07 Thread Andrew McHarg
It would be nice if the autocomplete plugin accepted a function that retrieved the data on behalf of the plugin instead of being stuck with either static data or a relatively inflexible canned ajax request. $(#example).autocomplete(function (term, success, failure) { /* do custom method for

[jQuery] [autocomplete] focus issue.

2009-07-06 Thread Lauri Suoperä
Hi, I'm wondering that what is the purpose of the field.focus() line inside the Autocompleter.Selection function in the autocomplete plugin. $.Autocompleter.Selection = function(field, start, end) { /*...*/ field.focus(); }; Because with that line the autocomplete has some very

[jQuery] AutoComplete - Raising event when custom item is selected

2009-07-02 Thread gnjunge
Concerning Jörn Zaefferer autocomplete. In many cases the autocomplete list is being filled with Key Value pairs, such as a list of FooBars with their name and id. Using the result function one would get the id, and drop it into a hidden field. I want to allow users to either pick an existing

[jQuery] Autocomplete - finding out (on blur) if the user has picked an item from the list or not

2009-07-02 Thread gnjunge
Concerning Jörn Zaefferer autocomplete. In many cases the autocomplete list is being filled with Key Value pairs, such as a list of FooBars with their name and id. Using the result function one would get the id, and drop it into a hidden field. I want to allow users to either pick an existing

[jQuery] Re: JQuery Autocomplete - conditional autocompletion between fields

2009-06-29 Thread Tom Worster
to set extraParams dynamically to the current value of other dom elements, assign a function to the extraParams that retrieves the value from the dom, e.g. $(#state).autocomplete(url, { extraParams: { town: function() { return $(#town).val(); } } }); see

[jQuery] JQUERY - Autocomplete with pagination

2009-06-29 Thread bharani kumar
Hi , Can u please tell me, How to add the pagination for autocomplete plugin , or is there any plugin there , Thanks

[jQuery] [autocomplete][livequery] .change()

2009-06-28 Thread lazytt
Hello. I'm having a problem with the following code: $(.prodname).livequery(function(){ $(this).autocomplete (search.php, { extraParams: { 'type':'products' } }); }); $(.prodname).livequery(function(e){ $(this).change(function(e) {

[jQuery] [autocomplete][livequery] .change()

2009-06-28 Thread lazytt
Hello. I'm having a problem with the following code: $(.prodname).livequery(function(){ $(this).autocomplete (search.php, { extraParams: { 'type':'products' } }); }); $(.prodname).livequery(function(e){ $(this).change(function(e) {

[jQuery] JQuery Autocomplete - conditional autocompletion between fields

2009-06-28 Thread 01101010001010001010
Hi, First of all, thanks for the autocomplete code - it's excellent. Apologies if this next question is too simple, but I couldn't get the answer on google (lmgtfy.com) I have two autocomplete fields, for address-matching, which for the sake of argument could be called state and town. I have

[jQuery] autocomplete

2009-06-28 Thread jpj
Hi, I've got a problem with autocomplete plugin : the loading image doesn't appear. The path to the image is correct, the problem is that everything seems to be stuck until the results appear, and that's also when the class is removed..so it never appears. Strangely, if I put an alert before this

[jQuery] Re: JQuery Autocomplete - conditional autocompletion between fields

2009-06-28 Thread MorningZ
Use AutoComplete's extraParams hook http://docs.jquery.com/Plugins/Autocomplete/autocomplete#toptions so it would be like: $(your state search textbox).autocomplete( /ajax/location.php, { extraParams: { type: $(#state).val() } } ); On Jun 26, 12:34 pm, 01101010001010001010

[jQuery] jQuery autocomplete - clickable links

2009-06-26 Thread alan4ick
Hi all ! How to make mailto links clickable if html returned formatItem?

[jQuery] [autocomplete] mustMatch : true rejecting everything

2009-06-26 Thread MarcGuay
as dividers now and it's working A+. Posting this for anyone else who has the same problem. keywords: jquery autocomplete mustmatch empty input box always reject selected Cheerios, Marc

[jQuery] [autocomplete] Autocomplete plugin help please

2009-06-25 Thread rm
Well, the issue is - it doesnt seem to work on my server. My local copy works perfectly, but th serever doesnt. See here: http://mousehunt.thetoxiczone.com/autosugg.html Thanks for helping out!

[jQuery] [autocomplete] Autocomplete plugin help please

2009-06-25 Thread rm
Well, the issue is - it doesnt seem to work on my server. My local copy works perfectly, but th server copy doesnt. See here: http://mousehunt.thetoxiczone.com/autosugg.html Thanks for helping out!

[jQuery] [autocomplete] Autocomplete plugin help please

2009-06-25 Thread rm
Well, the issue is - it doesnt seem to work on my server. My local copy works perfectly, but th server copy doesnt. See here: http://mousehunt.thetoxiczone.com/autosugg.html Thanks for helping out!

[jQuery] Autocomplete - trouble with getJSON callback function not executing?

2009-06-25 Thread dtrannn
Hi, I'm a jquery newbie, and I'm having trouble making the autocomplete plugin working with cross-domain calls. The alert in my callback function is never executed. Can't figure out why! Here's the plugin I'm using: http://plugins.jquery.com/project/jq-autocomplete Here's the simple JSON

[jQuery] autocomplete

2009-06-24 Thread smiling_face
autocomplete border for suggestion list is not showing properly when i am changing it's width. please help. Thanks in advance.

[jQuery] Re: jQuery Autocomplete - After service call if result is NULL then layer should be invisible

2009-06-23 Thread tarave
As I mentioned in my earlier post I have the same problem with autocomplete. The fix/workaround that I added to my page was to add a validation that is executed just prior to the page submit. The validation takes the typed in value and queries my data source to verify the typed in value exists.

[jQuery] Re: jQuery Autocomplete - After service call if result is NULL then layer should be invisible

2009-06-23 Thread Dushyant Patel
22, 2009 at 5:01 PM, Dushyant Patelpatel.dushy...@gmail.com wrote: Hello, I am using jQuery Autocomplete Plug-ins(http://bassistance.de/jquery- plugins/jquery-plugin-autocomplete/). Let me explain my problem: If i am looking for shirt and star typing shi and it showing me 10 results

[jQuery] Re: jQuery Autocomplete - After service call if result is NULL then layer should be invisible

2009-06-23 Thread Dushyant Patel
Hey i did not get you. Could please tell me more in details, if possible with some code/examples. Thanks in advance. On Jun 23, 11:28 am, tarave arav...@yahoo.com wrote: As I mentioned in my earlier post I have the same problem with autocomplete. The fix/workaround that I added to my page

[jQuery] jQuery Autocomplete - After service call if result is NULL then layer should be invisible

2009-06-22 Thread Dushyant Patel
Hello, I am using jQuery Autocomplete Plug-ins(http://bassistance.de/jquery- plugins/jquery-plugin-autocomplete/). Let me explain my problem: If i am looking for shirt and star typing shi and it showing me 10 results for shirt, but now after shi if i type like shixyzyz it should clear list

[jQuery] Re: jQuery Autocomplete - After service call if result is NULL then layer should be invisible

2009-06-22 Thread Jörn Zaefferer
What happens when your service doesn't return a result? As long as it returns an empty result (not an error), it should work fine. Jörn On Mon, Jun 22, 2009 at 5:01 PM, Dushyant Patelpatel.dushy...@gmail.com wrote: Hello, I am using jQuery Autocomplete Plug-ins(http://bassistance.de/jquery

[jQuery] Re: jQuery Autocomplete - After service call if result is NULL then layer should be invisible

2009-06-22 Thread Dushyant Patel
it return result but its null. and in that case i want to hide layer by calling select.hide(); but where should i call it. where to check that data==null and call select.hide(); Please help me on this. Thanks On Jun 22, 11:10 am, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: What

[jQuery] Re: jQuery Autocomplete - After service call if result is NULL then layer should be invisible

2009-06-22 Thread tarave
here is a link... http://groups.google.com/group/jquery-en/browse_thread/thread/9011e7faa57dca06 On Jun 22, 3:18 pm, tarave arav...@yahoo.com wrote: I'm having the same problem today.  Looks like another person did too and thier fix was to put a hack into the autocomplete plugin code.

[jQuery] Re: jQuery Autocomplete - After service call if result is NULL then layer should be invisible

2009-06-22 Thread tarave
I'm having the same problem today. Looks like another person did to and thier fix was to put a hack into the autocomplete plugin code.

[jQuery] Re: jQuery Autocomplete - After service call if result is NULL then layer should be invisible

2009-06-22 Thread Dushyant Patel
I tried following one: In the request function after the line var data = cache.load(term); I added the following: if (!data) { options.isEmpty(0); } else { options.isEmpty(data.length); } And in my autocomplete code, I

[jQuery] autocomplete not working in tabs?

2009-06-21 Thread efet
Hi, I used autocomplete plugin many times in other projects in the past. First time I need to put in in tabs. Its not functioning right. When clicked on a customer name, it needs to fill in the box. Test link (second tab, type any letter):

[jQuery] jquery autocomplete keypress database

2009-06-19 Thread Faizal Balsania
am trying to use jquery autocomplete plugin, I want it to suggest ItemCodes as user types... The problem is its not showing autocomplete box/frame/ Just to make sure webmethod returns data on every keyup event, I assigned data to a div element, and it works as it should. script language

[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

[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

[jQuery] Autocomplete giving error in Firefox but works in IE 6

2009-06-19 Thread Suave MF
Autocomplete not working in Firefox but works in IE 6. Getting an val is undefined error in Firefox Error Console which points to the parse() function in the autocomplete.js. Any suggestions? Mind you I'm a newbie at jQuery but advancing decently.

[jQuery] [autocomplete] request

2009-06-18 Thread hobbesDev
Hi, as there is currently a discussion about autocomplete plugin going on i would like to ask if: 1.) is it possible to extend the option:width parameter to width: (number | auto) where auto would set the width of the select box to the width of the input element 2.) extraParams should

[jQuery] [autocomplete] List second word in a match

2009-06-16 Thread AnHeLL
Well, at first, sorry about my english. The question i have is: How can i have a match in the results list when the letters maching only are in the second or third word? Is it possible? I'm going to tell you an example. In the demo page (http:// jquery.bassistance.de/autocomplete/demo/) at

[jQuery] [autocomplete] Obtaining the *key* on selecting rather than the *display name*

2009-06-16 Thread Sanjay Khandkar
Hi, I was able to obtain the key or display name from autocomplete list using your example of email. The problem is this a. Search should take place on the display field (in the name field - row.name) b. Display item in the textbox should be the display field again (the name field - row.name)

[jQuery] [autocomplete] Manual request

2009-06-16 Thread bigb
Hello, Here is my situation. I have an autocomplete control on my page that is working perfectly. I wanted to mimic a drop down menu by placing an image just to the right of the text box. When a user clicks that drop down arrow image, I want the whole list to display below the textbox. So far, I

[jQuery] autocomplete: current state?

2009-06-15 Thread hobbesDev
hi, i wanted to test the newest version of autocomplete. The current implementation seems to be very old and is still based on jquery 1.2.6 (autocomplete 1.0.2) (http://bassistance.de/jquery-plugins/jquery- plugin-autocomplete/). Quiet new is the debate on current features (see

[jQuery] Autocomplete + jScrollPane

2009-06-15 Thread Tekki
Evening, I'm trying to link these two plug-ins together and was wondering if it were possible. The 'autocomplete' list should contain custom scroll bars. If there is another way of performing this, please let me know. Thank you.

<    1   2   3   4   5   6   >