Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
187 views
in Technique[技术] by (71.8m points)

php - Yii add text before the value in EColumnsDialog

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

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

1 Reply

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...