yii cgridview how to insert text

how can i insert text in value field?


'columns'=>array(

            array(

                'header'=>'header',

                'value'=>'$data->category->pmenu->getLocalizedName().\'\\\'.$data->category->getLocalizedName()'

            ),

i try many methods to put \ as text but no results

This should work




...

'value'=>'$data->category->pmenu->getLocalizedName()."\\\".$data->category->getLocalizedName()',

...



no work

also i want to add

if i write


'value'=>'$data->category->getLocalizedName()'

or


'value'=>'$data->category->pmenu->getLocalizedName()'

-it dispaly value, but if i write


'value'=>'$data->category->pmenu->getLocalizedName()$data->category->getLocalizedName()'

i get empty field

try with


'value'=>'$data->category->pmenu->getLocalizedName() . $data->category->getLocalizedName()'