From: Nick201 on
how can I use autosuggest without cfinput. I mean just use input box.
I don't want to use cfform . Just want to use fom.

I seen that autosuggest won't work without cfinput. I mean it doesn't work
with input tab.

Any examples. Thanks


From: Ian Skinner on
Nick201 wrote:
> how can I use autosuggest without cfinput. I mean just use input box.
> I don't want to use cfform . Just want to use fom.
>
> I seen that autosuggest won't work without cfinput. I mean it doesn't work
> with input tab.
>
> Any examples. Thanks
>

If you don't want to use <cfform...> then you can't use <cfinput...> and
you don't get the auto-generated capabilities that come with it.

If you don't or can't use these features you have to roll your own auto
suggest feature. Depending on how complex you need it to be, it is not
too difficult.

But first of all, why don't you want to use <cfform...> nothing trick or
difficult about it unless you need it to be.

From: Nick201 on
because i already have form built in and validation built in for <form>. I don't like to change to cfform and change javascript etc.