Using yii-booster, I want to create a pretty simple table. The data is completely valid and works just fine using this:
$gridDataProvider = new CArrayDataProvider($model->results);
$gridColumns = array(
array('name'=>'score', 'header'=>'Score'),
array('name'=>'community', 'header'=>'Community ID'),
array('name'=>'ip', 'header'=>'IP Address')
);
$this->widget('bootstrap.widgets.TbGridView', array(
'type'=>'striped',
'dataProvider'=>$gridDataProvider,
'template'=>"{items}",
'columns'=>$gridColumns,
));
But I want the ip address to show up as a anchor, such as: <a href="steam://{ip}>{ip}</a>
, and I can't figure out how to make the data display as a link.