php - Yii add text before the value in EColumnsDialog -
php - Yii add text before the value in EColumnsDialog -
i have more or less code in "view":
'columns' => array( array( 'header' => 'id', 'name' => 'id', 'value'=>'$data->id', ),
i need add together every text id displays august or 1,2,3,4,5 intended "text" ie no display output in august this:
| id | some_table | some_table | | text_1 | samplesample | samplesample | | text_2 | samplesample | samplesample | | text_3 | samplesample | samplesample | | text_4 | samplesample | samplesample | | text_5 | samplesample | samplesample |
try this:
'columns' => array( array( 'header' => 'id', 'name' => 'id', 'value'=>function($data){ homecoming "txt".$data->id'; } ),
it's other question: yii cgridview error
php yii
Comments
Post a Comment