Re: CF8 autosuggest automatically filters again?

2008-04-11 Thread James Blaha
Dominic, Great thank you very much! -Jim ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516;25150098;k Archive: http://www.houseof

Re: CF8 autosuggest automatically filters again?

2008-04-10 Thread Dominic Watson
> > I was wondering how many records can you through at your tag? I.E is it > good if I past it a list of all U.S. cities? Hi Jim, The tag just wraps cfinput and adds some javascript to set extra properties. As such, it will be the same as using cfinput in terms of the number of items you can pa

Re: CF8 autosuggest automatically filters again?

2008-04-09 Thread James Blaha
Hi Dominic, I was wondering how many records can you through at your tag? I.E is it good if I past it a list of all U.S. cities? -Jim ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get t

Re: CF8 autosuggest automatically filters again?

2008-04-09 Thread Dominic Watson
This is now incorporated into the betterautosuggest custom tag along with two other properties (case sensitivity and subset matching, i.e. 'abc' matches 'ab', 'abc' and 'bc'. http://betterautosuggest.riaforge.org/ Dominic On 09/04/2008, Dominic Watson <[EMAIL PROTECTED]> wrote: > > Hi Dave, I'l

Re: CF8 autosuggest automatically filters again?

2008-04-09 Thread Dominic Watson
Hi Dave, I'll look into it for my auto suggest custom tag: http://betterautosuggest.riaforge.org/ Should be possible but will have to wait until later this evening. Dominic On 09/04/2008, Dave Markle <[EMAIL PROTECTED]> wrote: > > Problem summary: If you write SQL in the bound autosuggest funct

Re: CF8 autosuggest automatically filters again?

2008-04-09 Thread Dave Markle
Problem summary: If you write SQL in the bound autosuggest function like this: WHERE d_name LIKE '%#srch#%' the coldfusion cfinput autosuggest function forces the result to START WITH the search term, where the SQL is looking for containment of the search string. So, for example, my query retu

CF8 autosuggest automatically filters again?

2008-03-01 Thread Ryan Stille
I have a CF8 autosuggest setup for selecting a user on a form. The input tag is: And the query inside the getAddressBook() method looks like this: SELECT first, last, email FROM clients WHERE first LIKE OR last LIKE OR email LIKE I then return an array whose entries look like "#first# #