我正在使用 Yii-Booster 并在其中渲染 TbGridView 和 TbButtonColumn 以渲染最右侧的按钮。
当我渲染这个表时,除了视图按钮的图标不可见之外,一切都很好(其他的也不可见,但我不希望它们出现)。
我尝试将我的页面与此处的示例进行比较 - http://yiibooster.clevertech.biz/components.html#tables,但我无法发现实际显示图标图像的内容,以便发现我的页面上缺少的内容显示按钮。
有谁知道可能导致问题的原因?我不确定从哪里开始调试。这是为初学者呈现此小部件的代码-
// $gridColumns
$gridColumns = array(
array('name'=>'nick_name', 'header'=>'Interests Sets'),
array(
'htmlOptions' => array('nowrap'=>'nowrap'),
'class'=>'bootstrap.widgets.TbButtonColumn',
'viewButtonUrl'=>'Yii::app()->createUrl("friend/filter", array("friend_id"=>$data->id))',
'updateButtonUrl'=>null,
'deleteButtonUrl'=>null,
)
);
$this->widget('bootstrap.widgets.TbGridView', array(
'type'=>'striped',
'dataProvider'=>$gridDataProvider,
'template'=>"{items}",
'columns'=>$gridColumns,
));