目前我有一个 Angular Js Grid,它启用了分页功能,例如每页 5 条记录,记录总数为 2000,因此总共将有 400 页。
当处理 ng-grid 中的分页时,每页指定 gridOption 数据,这意味着对于第一页,gridOption 将为 1-5 行,第二个 6-10 行,依此类推......
Here i have implemented a selection functionality through checkboxes thus whenever a row is selected[checkBox becomes selected] and it's stored in selectedItems array and i show selected items in another grid like this.....
现在,当我转到第二页 [分页] 并选择像这样的其他行时...
真正的麻烦在于,当我再次返回上一页(即第 1 页)时,不会检查复选框,因为在分页中我们加载数据运行时因此页面显示以下结果...
希望你一定明白我的问题......
我需要的是在加载数据之前/之后的回调,以便我可以选择复选框,因为我保留了选择的数量
或者我的问题的任何其他解决方法也会很有帮助。
谢谢!。