我使用了jqGrid Treeview Adjacency模型来显示层次结构。 Treeview完美无缺。但我想检索节点的子节点。我已经拥有该行的ID。我写了这样的代码
var record = jQuery("#Listtbl").jqGrid('getInd',rowid);
newRecord = $('#Listtbl').jqGrid('getNodeChildren',record);
但是在新记录中我总是得到所有记录而不是孩子。
答案 0 :(得分:2)
您使用record
getRowData
参数的错误值。您应该使用getLocalRow
或var localRow = $('#Listtbl').jqGrid('getLocalRow', "5"),
children = $('#Listtbl').jqGrid('getNodeChildren', localRow);
alert(children.length);
:
{{1}}