如何在查找字段中设置网格的选定列值,如图所示?
我的观看代码,
$this->widget('zii.widgets.grid.CGridView', array(
'dataProvider' => AgentsModel::model()->search(),//searchByLogin(AgentsModel::model()->g_user_id),
'id' => 'CGridViewUser',
'selectionChanged'=>'
function(id){
id=$.fn.yiiGridView.getSelection(id);
alert(id);
}',
'columns' => array(
'g_user_id',
'name',
'lastname',
'phone',
'mobile',
'email',
),
'htmlOptions' => array(
'style'=>'cursor: pointer;',
),
));
从上面的代码中我选择了rowid,但不知道如何继续进行!!!
答案 0 :(得分:1)
根据您的要求,您必须为cell1, cell2, cell3..etc
等每个字段指定一些类名。
然后尝试以下内容:
$(".cell1").live("click",function(){
$(".cell1_txt").val($(this).html());// cell1_txt is text class name.
});
因此,对于第一个单元格,每行可以具有cell1
类,对于2ed单元格可以具有cell2
等等。
但是文本框必须包含cell1_txt
,cell2_txt
,cell3_txt
等类,