I have a ng-grid and here is my gridOptions
$scope.gridOptions = {
data: 'participants',
multiSelect: true,
enablePinning: true,
enableColumnResize: true,
selectedItems: $scope.selectedParticipant,
columnDefs: 'columnDefs',
sortInfo: { fields: ['rsid'], directions: ['asc']},
showSelectionCheckbox: true,
rowHeight: 36,
//selectedItems: $scope.selectedResources,
beforeSelectionChange: function (data) {
$scope.openDialogEditParticipant(data.entity);
return false;
},
afterSelectionChange: function (data) {
}
};
I want to select row for pop up dialog for editing and the checkbox for multiple selection for delete/status edit. how can I differentiate the selection in ng-grid?????
Aucun commentaire:
Enregistrer un commentaire