You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Many of the gridOptions aren't dynamic - they get set once and then stay that way forever. You may get some success through calling notifyDataChange, but I suspect it's another example of #1819
I'm trying to dynamically disengage row Selection b y clicking on a button.
Would there be any to do this?
I'm trying to use a button binded on this function but it doesn't work.
$scope.selectionMode = true;
$scope.toggleEditingMode = function () {
$scope.$apply(function () {
$scope.selectionMode = ! $scope.selectionMode
$scope.gridOptions.enableRowSelection = $scope.selectionMode;
})
}
The text was updated successfully, but these errors were encountered: