ayuso_15 wrote:
> I am trying to update query values wihtout refreshing
the page. I want to do
> all this through a input text when the value changes.
That is not even close to what is required for this concept.
That query
runs on the server. The input and the user interacting with
it run on
the client. And never will the two meet without a refresh.
If you are working with a small data set or a large pipe,
such as a
corporate intranet, you could deliver the entire record set
as a
JavaScript array. And then use basic JavaScript functionality
to
display a view of this, updated by the input control without
a refresh.
If that is not workable, which it seldom is, you can hide the
'refresh'
behind the scenes using AJAX to make the update request. But
that takes
a bit more code then you are showing. Depending on what
version of
ColdFusion you have will determine what built AJAX
functionality to
which you have access.