Showing posts with label Yii Framework. Show all posts
Showing posts with label Yii Framework. Show all posts

Sunday, December 15, 2013

CGridView is striping out the HTML tags : Solved

The solution is to specify the column type as "raw":


$this->widget('zii.widgets.grid.CGridView', array(
    'dataProvider'=>$dataProvider,
    'columns'=>array(
        array(            
            'name'=>'column1',
            // call the method 'getLink' from a model.
            'value'=>array($model, 'getLink'), 
            'type'=>'raw',
        ),
    ),
));

Thursday, September 6, 2012

Yii Framework: restrict loading jquery library again if you already included Jquery in case of using ajax button/link etc

Yii Framework: When already included Jquery and using Ajax button , Link creating conflicts