你对 ng-grid 中的一行点击有何反应?
How do you react to a row click in ng-grid?
我想对一行点击做出反应;我不想要 checkbox/select 东西,我只想知道特定行何时被单击。我该把钩子放在哪里?
使用 afterSelectionChange。
gridOptions.afterSelectionChange = function (rowItem) {
var entity = rowItem.entity;
// CODE
};
我想对一行点击做出反应;我不想要 checkbox/select 东西,我只想知道特定行何时被单击。我该把钩子放在哪里?
使用 afterSelectionChange。
gridOptions.afterSelectionChange = function (rowItem) {
var entity = rowItem.entity;
// CODE
};