I have used jQuery's autocomplete plugin in the past, but never before through Yii's implementation of it as a widget.
I am dynamically creating another autocomplete field and not able to set it to live:
$('input.ui-autocomplete-input').live("keydown.autocomplete", function() {
$(this).autocomplete();
});
or simply calling .autocomplete() when it is created to get it to work. Any ideas why this would work differently through Yii than through just using the plugin itself, or am I missing something really simple?
Thanks for any help!