我有一个主要的jqgrid处理22列中的5列。我想在选择行时填充工具箱中的22列数据(文本框,复选框...) 使用jqgrid子网格都可以完美地工作。 那么如何将传递到子网格的数据填充到我的工具箱元素中。 其他可行的工作,但不满足我,是在主网格中调用所有需要的数据隐藏22列,并在选择框中填充它们。请参阅以下完整代码:
estimatedRowHeight
答案 0 :(得分:0)
添加下面给出的代码
colModel: [
{ name: 'Code_Demandeur', index: 'Code_Demandeur', width: 15, sorttype: "int", sortable: false, resizable: false,
formatter: function (cellvalue, options, rowObject) {
TxtRankName = "Code_Demandeur_" + options.rowId;
return txtBx(TxtRankName, cellvalue)
}
}
]
function txtBx(Id, Value) {
strTextBox = "<input type='text' id='" + Id + "'";
if (Value != "")
strTextBox = strTextBox + " title='" + Value + "' value='" + Value + "'";
strTextBox = strTextBox + " />";
return strTextBox;
}