Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jqGrid getRootNodes 方法返回空数组,我使用以下代码获取根节点
var records = $trackerGrid.jqGrid("getRootNodes"); console.log(records);
有什么想法吗?
我想你parent以错误的方式填充了根节点的属性。它应该是parent: "null"或parent: null(见答案)。
parent
parent: "null"
parent: null
该演示创建具有树根节点的树网格。节点中的一个是叶子。演示表明getRootNodes可以正常工作。
getRootNodes