I have a CJuiAutoComplete and everything works fine except for the fact that when I hover the mouse on the displayed options they disappear automatically. I don’t know what is happening, I did the same as this example http://yiiplayground.com/index.php?r=UiModule/jui/ziiAutocomplete
hi
you can use js autocomplete
<script>
$( "#item" ).autocomplete({
source: "path/to/controller/action",
minLength: 1,
select: function( event, ui ) {
....
}
});
</script>
oh great, it’s working! You forgot to include me the stylesheet, though
<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css">