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"orである必要があります(回答parent: nullを参照してください)。
parent
parent: "null"
parent: null
デモは、ツリー ルート ノードを持つツリー グリッドを作成します。ノードの 1 つがリーフです。デモは、getRootNodes正しく動作することを示しています。
getRootNodes