如何在 CGridView Yii1.1 中编写这个 html 部分

这是我想添加到 CGridView 中的列(它是一个数字输入,数字范围在 1 到 60 之间),但我想将终端代码附加到此输入的 id中。在此代码中,一切正常,但终端代码未附加 id。


   array(

            'header' => 'Validity',

            'name' => 'validity',

            'value' => function(){ return '<input type="number" id="tentacles".$data["terminalcode"] name="tentacles" min="1" max="60">';},

            'type' => 'raw'

    )


森栏
浏览 77回答 2
2回答

慕哥9229398

您需要调整返回值并$data在值函数中添加参数。你的代码会变成这样array(&nbsp; &nbsp; 'header' => 'Validity',&nbsp; &nbsp; 'name' => 'validity',&nbsp; &nbsp; 'value' => function($data){ return '<input type="number" id="tentacles'.$data["terminalcode"].'" name="tentacles" min="1" max="60">';},&nbsp; &nbsp; 'type' => 'raw'),我希望你的问题能得到解决。

Smart猫小萌

您可以像这样更改代码。array(&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'header' => 'Validity',&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'name' => 'validity',&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'value' => 'CHtml::textField ("", "", array ("id"=>"tentacles".$data["terminalinfoid"], "style" =>"width:40px", "maxlength"=>"4"));',&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'type' => 'raw'&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;)&nbsp; &nbsp; &nbsp; &nbsp; ),
打开App,查看更多内容
随时随地看视频慕课网APP