[jQuery] Re: Autocomplete plugin: results as table?

2009-10-14 Thread alexbodn . groups
it's great indeed :) On Wed, Oct 14, 2009 at 10:34, Maarten wrote: On 12 okt, 18:35, alexbodn.gro...@gmail.com wrote: hello maarten, your attempt sounds interesting. could you give public access to these urls? Hello Alex, Sure, apparently some server settings were changed in the weekend b

[jQuery] Re: Autocomplete plugin: results as table?

2009-10-12 Thread alexbodn . groups
hello maarten, your attempt sounds interesting. could you give public access to these urls? On Wed, Oct 7, 2009 at 18:08, Maarten wrote: http://autocompleter.mwierda.blackpearl.minus3.nl/demo/table.html type in 'c' for a grouped result, using a TABLE for the layout. its mostly the fillList t

[jQuery] Re: (autocomplete) help about extraparams

2009-10-06 Thread alexbodn . groups
please try cacheLength=0 arg to autocomplete. On Fri, Oct 2, 2009 at 03:45, Otniel Zebua wrote: Ok, I have got it with $_GET. But now I have another problem, if I choose "England" for the country, then I press "a" in autocomplete input box, then $_GET['country'] value will be "GB" in the serve

[jQuery] Re: Autocomplete - How to simulate a select box, where displayed value is one thing and submitted value is another

2009-10-06 Thread alexbodn . groups
you need a hidden field to hold the value, and play around with the result trigger. hth On Mon, Oct 5, 2009 at 23:16, benze wrote: Hi, I'm trying to figure out how to use the autocomplete jQuery plugin best to my needs.  I'm looking to replace a select box with the Autocomplete plugin, but

[jQuery] Re: [autocomplete] auto complete based on additional input value

2009-09-26 Thread alexbodn . groups
hello frank, your application knows what's the zip of each hospital, so i think there's not worth sending it and expecting it back. what you probably need is to take the zip from another field supplied by the user, and base the query upon it. that's extraParam for. the key part is the variabl

[jQuery] Re: Deterministic or Non-Deterministic Event Handler execution?

2009-09-19 Thread alexbodn . groups
event driven programs can't usually rely on the order they might run. but in the case they both handle the same event or predictable event sequence, you may have handler for one event [conditionally] trigger the other event or even invoke it's handler directly. just my thought :) . On Sat, Sep

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

2009-09-19 Thread alexbodn . groups
sure :) On Sat, Sep 19, 2009 at 04:31, Catherine wrote: Same as subject I'm having trouble using it with jQuery 1.3.2. Please advice. -- alex smime.p7s Description: S/MIME Cryptographic Signature

[jQuery] Re: [autocompleter] how to change the separator from "," to "+"

2009-09-16 Thread alexbodn . groups
On Wed, Sep 16, 2009 at 11:17, James wrote: but where should I put it? as an additional argument to autocomplete(). On Sep 13, 5:47 pm, alexbodn.gro...@gmail.com wrote: multipleSeparator='+' On Sun, Sep 13, 2009 at 14:22, James wrote: > hey, let me first thank for the great job you've

[jQuery] Re: Handling result from the autocomplete plugin

2009-09-15 Thread alexbodn . groups
look at the parse function and maybe provide another parse function suitable for your data format. the result trigger will be able to update other fields when you select your choice. On Sun, Sep 13, 2009 at 00:45, Althalos wrote: Hello I'm using the following autocomplete plugin: http://doc

[jQuery] Re: Autocomplete plugin - customization

2009-09-14 Thread alexbodn . groups
if i understand you correctly, using the result trigger (google for it) may do the whole job. On Mon, Sep 14, 2009 at 11:27, Althalos wrote: 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 suggestio

[jQuery] Re: Autocomplete -- Autofill & Comma Seperator Issues

2009-09-13 Thread alexbodn . groups
try to remove the highlight flag, so you'll have a better idea on what's going on. On Mon, Sep 14, 2009 at 03:13, Mil wrote: Wow, how did I miss that option.  Thanks Patrick. On Sep 7, 9:18 am, Patrick Wolf wrote: Hi, have you tried to set the option selectFirst to false? Regards Patrick

[jQuery] Re: [autocompleter] how to change the separator from "," to "+"

2009-09-13 Thread alexbodn . groups
multipleSeparator='+' On Sun, Sep 13, 2009 at 14:22, James wrote: hey, let me first thank for the great job you've done. could you please tell me how can I change the word separator from , to +? thanks in advance. -- alex smime.p7s Description: S/MIME Cryptographic Signature

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

2009-09-11 Thread alexbodn . groups
result is being triggered with null values when the list gets shown onchange of input value. On Sat, Sep 12, 2009 at 08:36, Joel D'Souza wrote: 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

[jQuery] Re: JQuery Autocomplete Values/Presetting

2009-09-11 Thread alexbodn . groups
On Fri, Sep 11, 2009 at 22:44, Erick wrote: Hi Alex, Thank you very much for the response, but I'm pretty new to this. Done a LOT of vanilla js, but not much jquery.  Could you please help me with the results trigger? I'm assuming in doc.ready, do something like this: $("#my_field").result

[jQuery] Re: [Autocomplete] Receiving data in XML

2009-09-11 Thread alexbodn . groups
jQuery('#x').autocomplete(.,parse=function(data){parse the data with same resulting format as parse(data) in autocomplete}, ...); On Fri, Sep 11, 2009 at 23:37, Joao Gilberto Magalhaes wrote: Hi Alex, Thanks for your quick response. There is one item about parse XML in the autocomplete T

[jQuery] Re: [Autocomplete] Receiving data in XML

2009-09-11 Thread alexbodn . groups
hi, i'm personally not the maintainer of autocomplete, but in my opinion this code is too purpose specific to be hardwired in autocomplete. but you could pass a function with the part in else as the 'parse' argument to autocomplete, and need no change in autocomplete itself. On Fri, Sep 11, 2

[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 wrote: I'm using the JQuery Autocomplete plug-in and having a great deal of difficulty setting the val

[jQuery] Re: autocomplete.js plugin

2009-09-10 Thread alexbodn . groups
well, it returned a list. multiple is for editing a list of autocomplete values, separated by ',' by default. i think you don't need multiple. but since the list is separated by '|', you need to supply a custom parse function. the default separates values by new lines, while '|' separes between

[jQuery] Re: [autocomplete] Missing space character in request

2009-09-10 Thread alexbodn . groups
think of a patch with an option with this effect. On Sat, Aug 8, 2009 at 17:00, aw wrote: 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. -- alex s

[jQuery] Re: autocomplete

2009-09-10 Thread alexbodn . groups
i'm not sure i'd make it part of the widget, since it doesn't treat the options linearly. you may create any element with an onclick event to get the same values autocomplete would and display them similar to autocomplete list too. On Mon, Aug 17, 2009 at 00:06, ser999 wrote: I am new to usi

[jQuery] Re: [Autocomplete] Autofill & Comma Seperator Issues

2009-09-10 Thread alexbodn . groups
please try the demo at http://jquery.bassistance.de/autocomplete/demo/, on the field Multiple Cities (local), the name Oregon. On Tue, Sep 1, 2009 at 11:49, Mil wrote: Hi, I am trying to use this autocomplete http://docs.jquery.com/Plugins/Autocomplete but I'm having some issues with it.  I'

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

2009-09-10 Thread alexbodn . groups
look at version 1.1 from bassist On Tue, Sep 8, 2009 at 10:18, CharlesW wrote: 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

[jQuery] Re: [Autocomplete] Receiving data in XML

2009-09-10 Thread alexbodn . groups
play with the options to autocomplete: dataType, parse are handling the conversation with the server. On Wed, Sep 9, 2009 at 16:11, Joao Gilberto wrote: 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 sourc

[jQuery] Re: Form got submitted when I hit enter on select the value in autocomplete box

2009-09-10 Thread alexbodn . groups
this is being treated in the current 1.1 version from bassist On Sat, Aug 29, 2009 at 23:42, pankaj sharma wrote: Any help on this? On Mon, Aug 24, 2009 at 11:14 PM, pankaj sharma wrote: Hi  All, In my application,there are several autocomplte field is available. When I type "pank" and then

[jQuery] Re: [autocomplete] a few improvements to autocomplete

2009-09-10 Thread alexbodn . groups
On Wed, Sep 9, 2009 at 18:31, wrote: 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

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

2009-09-09 Thread alexbodn . groups
autocomplete is the place to enter some text based on a list of values. you may set mustMatch:false, and you'll be able to enter text not in the list. then, if you set on* on the input field, it may do whatever you want with the text you entered. On Wed, Sep 9, 2009 at 20:41, starkos wrote: I

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

2009-09-09 Thread alexbodn . groups
google for the result trigger of autocomplete, and perform an href.location=x there. On Thu, Sep 10, 2009 at 02:02, ripcurlksm wrote: Can anyone offer any suggestion to allow for me to get this to work? If I type something like "Green" and click on the suggestion, I want it to go to a page l

[jQuery] Re: [autocomplete] key - value

2009-09-09 Thread alexbodn . groups
hello, you should make an additional input for the code, and set a result trigger to update the code. as for the data you supply, it should be in the format 'description1|key1\ndesc...'. search google for good examples. On Wed, Sep 9, 2009 at 17:43, TiGeRWooD wrote: Hi, Is there a way to u

[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. require

[jQuery] Re: autocomplete accents

2009-09-07 Thread alexbodn . groups
maybe the matching could be done in a callback function? On Mon, Sep 7, 2009 at 12:15, sebastien creme wrote: 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

[jQuery] Re: a probable bug with keyboard events

2009-09-06 Thread alexbodn . groups
hello joern, sorry didn't see your answer. your patch proposed to the ticket is working great. please commit it if you can. On Fri, Nov 14, 2008 at 16:44, Jörn Zaefferer wrote: Finally a ticket: http://ui.jquery.com/bugs/ticket/3587 Jörn On Mon, Oct 20, 2008 at 2:59 AM, alex bodnaru wrot