A while back I posted examples of using ColdFusion 8 Ajax support to power an auto-suggest control and related
Well, we did. In the final CF8, the CFC method bound to auto-suggest can return a simple list (a string), and the CFC bound to a
The CFC method to power an auto-suggest could be simplified like this:
SELECT artname
FROM art
WHERE UCase(artname) LIKE Ucase('#ARGUMENTS.search#%')
ORDER BY artname
The CFC method to power a
These are great little enhancements, and I am glad the team was able to get them in just in time.
Leave a Reply