angular-ui/ui-grid
在 GitHub 查看[selection] - event rowSelectionChanged - pass GridCol along with GridRow
Open
#4,534 建立於 2015年10月16日
breakinghelp wantedtype: enhancement
描述
currently event rowSelectionChanged has the following signature:
on.rowSelectionChanged($scope, function (row, event) { ... })
I have a use case when I'd also find useful information about column being clicked.
Detailed scenario:
Clicking on the row has an event associated (ex: redirects to another state). However, the very last column of each row is a custom column that allows deleting of that row. Currently clicking on the delete button in the given row will also trigger rowSelectionChanged event, which is not desired just for that column.
Given that I had information about GridCol in this event, I could write something like:
on.rowSelectionChanged($scope, function(row, col, event) {
if (col.name != 'delete') {
$state.go('superState');
}
});
This would be a breaking change since it would change the signature of the event. If I'm given a green light, I'll submit a PR.