Manually configuring CcolumnButton

HI…

I tried to add 3 column buttons manually(view,edit and delete). But only the view button image is visible and others are not.I want three images to three buttons. How can I do it?

Thanks…

array(

'template'=>'{view}{delete)(update)',


'class'=>'CButtonColumn',


'buttons'=>array(


	                                        'view' => array(


						'label'=>'view',


						'imageUrl'=>Yii::app()->baseUrl . '/images/view.png',


						'url' => 'Yii::app()->createUrl("/IvrReports/UserCallDetails/",array())',


						//'click'=>'function(){window.open($(this).attr(\'href\'), \'resizable=0,scrollbars=true,width=100,height=100\');return false;}',





					),


					'delete' => array(


						'label'=>'delete',


						'imageUrl'=>Yii::app()->baseUrl . '/images/delete.png',


						'url' => 'Yii::app()->createUrl("/IvrReports/UserCallDetail/",array())',


						//'click'=>'function(){window.open($(this).attr(\'href\'), \'resizable=0,scrollbars=true,width=100,height=100\');return false;}',





					),


					'update' => array(


						'label'=>'update',


						'imageUrl'=>Yii::app()->baseUrl . '/images/update.png',


						'url' => 'Yii::app()->createUrl("/IvrReports/UserCallDetails/",array())',


						//'click'=>'function(){window.open($(this).attr(\'href\'), \'resizable=0,scrollbars=true,width=100,height=100\');return false;}',





					),


				),

In the template element that you using, defined default tokens that recognized by yii…So it won’t be able to show you the images you defining by their ids’.(As I think…)

Jst try removing that template element.May be it’ll work… :)

yeah… it works… Thanks a lot