试图在 上使用我的模型功能GetStatusName
,TbDetailView
但它不起作用。它的工作正常TbGridView
。
型号功能:
public function getStatusName()
{
switch($this->status)
{
case self::STATUS_ACTIVE:
return 'Active';
break;
case self::STATUS_DELETED:
return 'Deleted';
break;
default:
return 'Unknown';
break;
}
}
代码:
<?php
$this->widget('bootstrap.widgets.TbDetailView',array(
'type'=>'bordered condensed',
'data'=>$model,
'attributes'=>array(
'name',
array('name' => 'status', 'type' => 'text', 'value' => '$data->statusName'),
),
));
?>
看法:
Name John
Gender $data->statusName