I have designed a new page and I want to include it in the cgridview as a partial view.
Just like we do it in index action as
<?php
$this->widget('bootstrap.widgets.TbListView',array(
'dataProvider'=>$dataProvider,
'summaryText' => '',
'itemView'=>'_view',
)); ?>
Actually I want to replace the cgridview default style (that displays the data in table) with my own design.
How can I add that view ?
Thanks in advance.