Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have more or less the code in the "view":

'columns' => array(
            array(
                'header' => 'ID',
                'name' => 'id',
                'value'=>'$data->id',
            ),

I need to add to it so that every TEXT id which displays August or early 1,2,3,4,5 was 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 |

enter image description here

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
185 views
Welcome To Ask or Share your Answers For Others

1 Answer

Try it like this:

'columns' => array(
    array(
        'header' => 'ID',
        'name' => 'id',
        'value'=>function($data){
            return "TXT".$data->id';
        } 
    ),

It's like your other question: YII CGridView error


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...