2014-11-15 87 views

回答

1

而不是定義的數據時,您的詳細視圖中顯示使用

array(
    'attributeName1', 
    'attributeName2', 
) 

的,使用

array(
    array(
    'label'=>'Whatever you want', 
    'value'=>null===$model->attributeName1? 
     "custom message": 
     $model->attributeName1, 
), 
    'attributeName2', 
) 

這給了你,但是你想它格式化內容的權力。