I use CGridView to display data in a grid format, but I cannot create a custom footer, the code I use is
<?php $this->widget('zii.widgets.grid.CGridView', array('dataProvider' => $dataProvider, 'columns' => array( array( 'name' => 'created_date', 'header' => 'Created', ), array( 'name' => 'access_date', 'header' => 'Accessed', ), array( 'name' => 'referenceCode', 'header' => 'Ref Code', ), array( 'name' => 'designation', 'header' => 'Designation', ), array( 'name' => 'company', 'header' => 'Company', ), array( 'name' => 'recommended_actions', 'header' => 'Recommended Action', 'type' => 'html', 'value' => function($jobBoard) { return CHtml::link($recAction[0]['display_text'], Yii::app()->createUrl($actionUrl, $params)); } ), array( 'class' => 'CDataColumn', 'header' => 'List of Actions', 'type' => 'html', 'value' => function($jobBoard){ echo '<div class="action-joborder"> <ul class="moveto-joborder"> <li>Action <img height="6" width="7" alt="" src="images/bg_action.gif"> <ul>'; echo '<li>'.CHtml::link($actionArray['display_text'], Yii::app()->createUrl($actionUrl, $params)).'</li>'; echo '</ul> </li> </ul> </div>'; }, 'name' => 'actions', ), ))); ?>
the above code gives me a paginated footer only, I want to put some Button element to give the grid some control. the grid should look like this 
is there any way to make a custom element in the footer.