[SOLVED]CGridView buttons links

Hi,

How to change the hyperlink of the view button and then hide the update and delete button ?




<?php $this->widget('zii.widgets.grid.CGridView',array(

    'id' => 'wsrecruitcvhead-grid',

    'dataProvider' => $model->search(),

    #'filter' => $model,

    'columns' => array(

        array(

           'name' => 'ResumeTitle',

           'value' => $model->ResumeTitle,

        ),

        'ResumeSummaryIntroduction',

        'Name',

        array(

            'class' => 'CButtonColumn',

            'viewButtonUrl' => ?,

        ),

    ),

));



solved




        array(

            'class' => 'CButtonColumn',

            'viewButtonUrl' => 'Yii::app()->createUrl("wsrecruitcvhead/view",array("id"=>$data["ResumeID"]))',

            'template'=>'{view}',

        ),