我正在使用两个Jqgrids,当我双击“主”网格时,我会显示另一个版本的网格。在我正在显示的新网格中,我希望选择/突出显示在“主”网格中选择的行。
ondblClickRow: function (id, rowid) { //function to get value of selected row and show new grid
var ret = $("#grid1").getRowData(id);
loadEditGrid(ret.ID);
function loadEditGrid(id) {
$("#grid1").empty();
jQuery("#grid2").jqGrid({
url: 'test.json',
datatype: "json",
jsonReader: {
root: 'rows',
repeatitems: false,
page: "page",
total: "total",
records: "records",
userData: id,
cell: "",
id: "ID"
},
colNames: ['Item Name', 'Item Id'],
colModel: [{ name: 'ITEM_NAME', index: 'ITEM_NAME', width: 160 },
{ name: 'ID', index: 'ID', width: 80}],
height: "75%"
});
}
},
答案 0 :(得分:1)
您应该使用setSelection方法选择任何行。在加载网格中的数据后,您应该执行此操作非常重要。因此,您应该将setSelection
的电话置于loadComplete
内或gridComplete
内回拨。