Tag Archives: yii php

Yii Csort With ActiveRecord

controller 部份

$sort->attributes= array(
'product.id'=>'productId',
'product.name'=>'productName',
'category.name'=>'categoryName',
'brand.name' => 'brandName',
);

/*
$sort->attributes= array(
'model中的alias.欄位'=>'網址顯示的Alias',
);
*/

view 部份

< ?php echo $sort->link('product.id','編號'); ?>
//< ?php echo $sort->link('table.name','網頁顯示的名稱'); ?>

model 部份
記得把 relations中的 alias 設好
如下

/**
* @return array relational rules.
*/
public function relations()
[...]

Posted in program | Tagged | Leave a comment