I made a sortable list using CJuiSortable.
It’s working perfectly. By default it is using unordered list (ul)
is there anyway to change it become ordered list ??
I made a sortable list using CJuiSortable.
It’s working perfectly. By default it is using unordered list (ul)
is there anyway to change it become ordered list ??
Later, I’ve found the way…
it is use ‘tagName’ property so it is like this :
$this->widget('zii.widgets.jui.CJuiSortable', array(
'items'=>$arrayList,
'tagName'=>'ol',
));