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

Popular posts from this blog

php - How to pass multiple values from url -

database - php search bar when I press submit with nothing in the search bar it shows all the data -

ios - How to load .png images from Documents folder of an app -