我正在显示一个包含两个标题“变量”和“值”的简单表格,显示如下:
Variable| Value
entry1| value1
entry2| value2
如何还原列和行以使其看起来像
Variable | entry1 | entry2
Value | value1 | value2
我当前的代码:
$this->widget('bootstrap.widgets.TbExtendedGridView', array(
'sortableRows'=>true,
'afterSortableUpdate' => 'js:function(id, position){ console.log("id: "+id+", position:"+position);}',
'type'=>'striped bordered',
'dataProvider' => $dataProvider,
'columns' => array(
array(
'header'=>'Variable',
'name'=>'variable_id',
'value'=>'$data->variable->name',
'filter'=>CHtml::listData(Study::model()->findAll(), 'id', 'variable_name'),
),
'value',
),
));