Re: [Tacos-devel] Autocompleter Question

2006-05-01 Thread Pedro Viegas
at the truncate limit).>> Ben>> -Original Message-> From: [EMAIL PROTECTED]> [mailto:[EMAIL PROTECTED]] On Behalf Of> [EMAIL PROTECTED] > Sent: Monday, May 01, 2006 2:31 PM> To: tacos-devel@lists.sourceforge.net> Subject: Re: [Tacos-devel] Autocompleter Que

RE: [Tacos-devel] Autocompleter Question

2006-05-01 Thread andyhot
rformant (our search > short-circuits itself at the truncate limit). > > Ben > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > [EMAIL PROTECTED] > Sent: Monday, May 01, 2006 2:31 PM > To: tacos-devel@lists.sourceforg

RE: [Tacos-devel] Autocompleter Question

2006-05-01 Thread Ben Dotte
f at the truncate limit). Ben -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Monday, May 01, 2006 2:31 PM To: tacos-devel@lists.sourceforge.net Subject: Re: [Tacos-devel] Autocompleter Question I'd add the maxResults logic in

Re: [Tacos-devel] Autocompleter Question

2006-05-01 Thread andyhot
I'd add the maxResults logic in the listener. Also for minSearchCharacters, see http://wiki.script.aculo.us/scriptaculous/show/Ajax.Autocompleter and tacos Autocompleter 'options' parameter. You can have options="literal:{minChars:3}" added >From Pedro Viegas <[EMAIL PROTECTED]>: > Guess so, but

Re: [Tacos-devel] Autocompleter Question

2006-05-01 Thread Pedro Viegas
Just saw Jesses reply now! After my own post. Sorry...I have been trying to do things in the Autocompleter by adding in a component wich emcapsulates the Autocompleter.Trying to put some code witch interacts with the original one with workarrounds, so that I don't break compatibility and future upg

Re: [Tacos-devel] Autocompleter Question

2006-05-01 Thread Jesse Kuhnert
Go read up on the component documentation, http://tacos.sourceforge.net/components/Autocompleter.html.Everything you want to do is there. minChars, frequency, etc.. As for filtering a max return size that's sort of up to whatever is providing the "listSource" parameter. On 5/1/06, Pedro Viegas <[E

Re: [Tacos-devel] Autocompleter Question

2006-05-01 Thread Pedro Viegas
Guess so, but it's a little scary. Not to use all the time at least, if it was a large list, it would be very expensive and slow to pull all the items to show.I think this would be of interest but some security features would have to be in place. I'm building a little component library of my own, a

Re: [Tacos-devel] Autocompleter Question

2006-05-01 Thread Chris Chiappone
Ok thats fine, just curious if it was possible with the current API.  Anyway any idea why the current autocompleter doesn't seem to work inside a conditional?On 5/1/06, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: Hmmm...Sounds like a tricky problem. If I had used the dojo ComboBox (which does the sam

Re: [Tacos-devel] Autocompleter Question

2006-05-01 Thread Jesse Kuhnert
Hmmm...Sounds like a tricky problem. If I had used the dojo ComboBox (which does the same thing) it would be easy to tell you how to do this but with Prototype I'm not sure how you could get a reference to that Autocompleter object. You may have to create the Autocompleter _javascript_ object your

Re: [Tacos-devel] Autocompleter Question

2006-05-01 Thread Chris Chiappone
One other question I had is that I notice if the autocompete is wrapped in a conditional it doesn't seem to work.  Have others experienced this?On 5/1/06, Chris Chiappone <[EMAIL PROTECTED]> wrote: I have been using the Tacos autocompter with success for some time now and wanted to know how I coul

Re: [Tacos-devel] Autocompleter Question

2006-05-01 Thread Chris Chiappone
The reason I would like to have a button show the full list is if the user wants to know all of the possibilities in the selection list without having to type anything.  Does that make sense? On 5/1/06, Chris Chiappone <[EMAIL PROTECTED]> wrote: One other question I had is that I notice if the auto

Re: [Tacos-Devel] Autocompleter Question

2006-05-01 Thread Pedro Viegas
You mean you want to replace the Autocompleter's default behaviour of when you stop typing it shows the list, with, only when you press the new button, it shows the list?Why would you want to do that by the way? Is the list to slow to calculate? On 5/1/06, Chris Chiappone <[EMAIL PROTECTED]> wrote:

[Tacos-Devel] Autocompleter Question

2006-05-01 Thread Chris Chiappone
I have been using the Tacos autocompter with success for some time now and wanted to know how I could add functionality. What I basically want is the ability to press a button next to the textfield that would autofill all values in the completion list.  Would this be something easy to implement? An