When I used zii.widgets.jui.CJuiAutoComplete' widget, I got 2 problems
P1) when I create an array as follow
a[1]=>'aa'
a[2]=>'bb'
a[3]=>'cc'
it isn't working. But if the array like this
a[0]=>'aa'
a[1]=>'bb'
a[2]=>'cc'
It is working fine.
Q1 ) How should I do to work the widget with the array as follow?
a[1]=>'aa'
a[2]=>'bb'
a[3]=>'cc'
p2) When I select a value by above widget, I want to get some data from DB and put them into other input boxes by ajax.
Q2) How should I do?