在jqGrid Treeview Adjacency模型中获取孩子

时间:2012-04-27 12:20:50

标签: jqgrid treeview

我使用了jqGrid Treeview Adjacency模型来显示层次结构。 Treeview完美无缺。但我想检索节点的子节点。我已经拥有该行的ID。我写了这样的代码

var record = jQuery("#Listtbl").jqGrid('getInd',rowid);
newRecord =  $('#Listtbl').jqGrid('getNodeChildren',record);

但是在新记录中我总是得到所有记录而不是孩子。

1 个答案:

答案 0 :(得分:2)

您使用record getRowData参数的错误值。您应该使用getLocalRowvar localRow = $('#Listtbl').jqGrid('getLocalRow', "5"), children = $('#Listtbl').jqGrid('getNodeChildren', localRow); alert(children.length);

{{1}}