在我的假期模型Vac中,我有这个功能
public function getVacCount(){
此函数返回一个假期有多少天。
我想像这样向 cgridview 添加一个自定义列:
<?php
$this->widget('zii.widgets.grid.CGridView', array(
...
array(
'name' => 'count',
'value' => '$data->getVacPeriod()'
),
...
),
));
?>
它工作正常。但我不知道如何对这个自定义属性进行排序。我尝试使用 CSort 但它不起作用。任何的想法?