Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any good example about Autocomplete with Zend Framework? (JQuery and ZendX)

I have a problem, I don't find good examples of "autocomplete" with zend framework (using jQuery with zendx). I need one that works to understand how to develop it.

Someone has done it?

Thank you very much in advance

PS: I know how to do it without ZendX, I mean, doing the form myself (and using jquery as usual with a autocomplete.php file using the parameter typed in the input field), but I would like to use the zend framework properly, so I would like to know if someone has made it

like image 926
joanballester Avatar asked Apr 12 '10 09:04

joanballester


3 Answers

I just watched this: http://www.zendcasts.com/autocomplete-control-with-zendx_jquery/2010/07/ Really great. It works perfectly.

like image 120
chris Avatar answered Oct 16 '22 15:10

chris


Looks like Autocomplete functionality (which was just reintroduced w/ jQuery UI 1.8) is back in 1.10. Here is the new documentation for it.

like image 24
Stephen Fuhry Avatar answered Oct 16 '22 13:10

Stephen Fuhry


I'm not sure it would be the job of Zend to handle a special front-end UI widget like that. I keep it simple, but adding a CSS class to the input field in the view, and providing a controller action that returns results in JSON. My front-end javascript attaches the autocomplete behavior to any input forms with the CSS class on it.

You can even add an HTML5 data- attribute (blog post) with the URL of the action to hit, so your handler can be agnostic.

like image 1
aceofspades Avatar answered Oct 16 '22 15:10

aceofspades