Re: AUTOSUGGESTBINDDELAY won't take anything less than 1

2007-08-07 Thread Tom Chiverton
On Monday 06 Aug 2007, [EMAIL PROTECTED] wrote: Is that a feature request that I could submit? Would that go to Yahoo or Adobe? adobe.com/go/wish Is there an overwhelming reason to not allow us to set anything below 1? I can't see one, as long as the docs make clear the potential impact of

AUTOSUGGESTBINDDELAY won't take anything less than 1

2007-08-06 Thread David Mineer
I am using an autosuggest control and it works great. However, I want to lower the response time to 0.1. If I try anything with a decimal, that is anything between 0.1 and 0.9, I get an error. Even trying the default 0.5 gives me the following error: Attribute validation error for the CFINPUT

Re: AUTOSUGGESTBINDDELAY won't take anything less than 1

2007-08-06 Thread Raymond Camden
The docs clearly say you must use a non-zero integer. So while the default is indeed 0.5, if you want to specify something it must be a whole #, 1 or higher. On 8/6/07, David Mineer [EMAIL PROTECTED] wrote: I am using an autosuggest control and it works great. However, I want to lower the

Re: AUTOSUGGESTBINDDELAY won't take anything less than 1

2007-08-06 Thread David Mineer
..5 isn't really fast enough. I know my users are going to scream. Maybe it's not the speed. But this is not working as I had hoped. Once you start typing I would expect all matches to show up and then the list would eliminate items which no longer match as you continued typing. With

RE: AUTOSUGGESTBINDDELAY won't take anything less than 1

2007-08-06 Thread Dan G. Switzer, II
David, ..5 isn't really fast enough. I know my users are going to scream. Maybe it's not the speed. But this is not working as I had hoped. Once you start typing I would expect all matches to show up and then the list would eliminate items which no longer match as you continued typing. With

Re: AUTOSUGGESTBINDDELAY won't take anything less than 1

2007-08-06 Thread David Mineer
I agree that one needs to be careful. I do understand the performance problems that could arise if you are making lots of round trips to the server. In this case I bind to: autosuggest=#ValueList(desc.description)#. So since I already have the results of the query I don't think there would be

RE: AUTOSUGGESTBINDDELAY won't take anything less than 1

2007-08-06 Thread Dan G. Switzer, II
David, I agree that one needs to be careful. I do understand the performance problems that could arise if you are making lots of round trips to the server. In this case I bind to: autosuggest=#ValueList(desc.description)#. So since I already have the results of the query I don't think there

Re: AUTOSUGGESTBINDDELAY won't take anything less than 1

2007-08-06 Thread Sean Corfield
On 8/6/07, David Mineer [EMAIL PROTECTED] wrote: I don't know what I could be doing wrong. Anyone able to succesfully use anything less than 1? You can change the default by modifying lines 20 and 28 of autocomplete-min.js in /CFIDE/scripts/ajax/yui/autocomplete - or copying the entire scripts

Re: AUTOSUGGESTBINDDELAY won't take anything less than 1

2007-08-06 Thread David Mineer
Sean. Thank you. That makes it work exactly like I want it to. Too bad it can't default to 0.5 but allow us to choose 0.1 or even 0.0. Is that a feature request that I could submit? Would that go to Yahoo or Adobe? Is there an overwhelming reason to not allow us to set anything below 1?