I’m trying to create this: http://www.justkez.com/cakephp-livesearch/ in CakePHP 2.0.
The problem is that the AjaxHelper is not available anymore in CakePHP 2.0, and so
echo $this->Ajax->observeField('query', $options);
Does not work anymore.
Any suggestions?
I ended up implementing it using the JSHelper, like suggested above. I will be marking this as an answer, since it contains the actual code example on how to do it.