Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting select rows from ng-grid?

How do I create (or access) an array of selected rows in my ng-grid?


Documentation (scroll to "Grid options")

id                 | default value | definition
-----------------------------------------------
selectedItems      |       []      | all of the items selected in the grid.
                                     In single select mode there will only
                                     be one item in the array.

index.html

<body ng-controller="MyCtrl">
    <div class="gridStyle" ng-grid="gridOptions"></div>

    <h3>Rows selected</h3>
    <pre>{{selectedItems}}</pre>
</body>

main.js

var app = angular.module('myApp', ['ngGrid']);
app.controller('MyCtrl', function($scope) {
    $scope.myData = [{name: "Moroni", age: 50},
                     {name: "Tiancum", age: 43},
                     {name: "Jacob", age: 27},
                     {name: "Nephi", age: 29},
                     {name: "Enos", age: 34}];
    $scope.gridOptions = { data: 'myData' };
});

Plnkr for the code (and to run it)

like image 330
Foo Stack Avatar asked Jun 01 '13 17:06

Foo Stack


2 Answers

Based on the doc, selectedItems should be a property of $scope.gridOptions, so try this:

Controller

$scope.gridOptions = { data: 'myData', selectedItems: [] };

HTML

<pre>{{gridOptions.selectedItems}}</pre>
like image 125
Ye Liu Avatar answered Sep 18 '22 21:09

Ye Liu


You can get selected items of ng-grid 2.x from:

$scope.gridOptions.$gridScope.selectedItems
like image 40
ThanhHH Avatar answered Sep 20 '22 21:09

ThanhHH