angular-ui/ui-grid

Listen for select all event?

Open

#4,305 创建于 2015年9月1日

在 GitHub 查看
 (0 评论) (1 反应) (0 负责人)JavaScript (2,496 fork)batch import
help wantedneeds: analysis

仓库指标

Star
 (5,395 star)
PR 合并指标
 (30 天内没有已合并 PR)

描述

I'm trying to implement a select all for external paging (i.e. one that selects all possible rows, even those not retrieved from the server yet). I keep a list of selected row identifiers on the client and, if needed, re-select rows when a user pages (i.e. gridRow.isSelected = true).

Is there a way to listen for when the user clicks on the select all checkmark? When the user clicks on the checkmark, I'd like to retrieve all possible row identifiers from the server and store them on the client-side. My current solution is to listen for rowSelectionChanged and rowSelectionChangedBatch and check if gridRows.length == paginationPageSize.

This is somewhat related to https://github.com/angular-ui/ui-grid/issues/1636#issuecomment-128110515

贡献者指南