0

I'm using jqGrid in treegrid mode, my problem is that i want to the total number of rows in the grid for some manipulations? I've tried records and reccount but they seems to count only the rows return by the server against the request. My grid loads data on demand and when i delete all the children of a row both of above options return 0?

Any hints or ideas regarding this?

4

1 回答 1

0

您写道,如果用户单击树节点的展开按钮,您的 TreeGrid 会“按需”加载数据。在这种情况下,您必须将自定义请求发送到“知道”TreeGrid 的所有节点的服务器。jqGrid 没有这方面的信息。

如果需要,您可以在部分 JSON 或 XML 响应的服务器响应中发送 Tree Grid中的项目总数(而不是仅在最后一个响应中) 。records我没有对此进行测试,但在我看来,在这种情况下recordsTreeGrid 的参数不会被覆盖并且您可以使用它。

于 2012-06-08T13:49:03.207 回答