jeecg之多行编辑,点击combobox,动态给dgCol赋值

此代码针对JEECG框架来使用。
话不多说,上代码:


  
   
   
   
   
   
  

以上为列表展示,列表注意:要赋值的地方设定 extendParams="editor:‘text’"

编辑行,代码如下:

//编辑行
function editRow(title,addurl,gname){
	var rows=$('#'+gname).datagrid("getChecked");
	if(rows.length==0){
		tip("请选择条目");
		return false;
	}
	for(var i=0;i

//编辑框编辑时触发的事件

function statusChange(obj,sceneId)
{
	// 点击场次获取到当前行
	var indexSplit=$(obj).attr("id").split('_');
	var index = indexSplit[1];
	clickiOrgCode(sceneId,index);
}

// 根据场次ID 给相对应行的培训地点/培训开始时间/培训结束时间 赋值

function clickiOrgCode(sceneId,index){
	 $.ajax({
	 // 查询数据 返回json串
		url:"*",
		type:"post",
		data:{
			sceneId : sceneId
		},
		dataType:"json",
		success:function(data){
			var rows = $('#trainingParticipationList').datagrid('getRows');
 		    //alert("index:"+index)
			//console.log(rows[index])
			//alert("rows[index]:"+rows[index])
			 $("#trainingAddressValue_"+index).val(data[0].trainingAddressValue);
		}
	});
}

结束

你可能感兴趣的:(JEECG快速开发平台,jeecg中的多行编辑,点combobox,动态给dg击Col赋值,jeecg,easyui)