Revision #5 has been created by samdark on Jan 20, 2019, 9:03:57 PM with the memo:
Set version
« previous (#4)
Changes
Title
unchanged
How to display images in CJuiAutoComplete without extenstions
Category
unchanged
Tutorials
Yii version
changed
1.1
Tags
changed
AJAX,jquery,CJuiAutoComplete, ajax, jquery
Content
changed
[...]

Here is what you can do in a very simple way, in your model controller:
```php
// In the access rules function
public function accessRules()[...]
In your view file _In my case it was _form_:
```php
<?php
$this->widget('zii.widgets.jui.CJuiAutoComplete', array(
'attribute' => 'color', // replace color with the attribute name
'model'=>$model,
'sourceUrl'=> '?r=colorCode/getColorAjax', // replace getColorAjax with your function name[...]