I have setup ag-grid in angular2 which works fine but i am not able to get the value of selected row...There are no errors in my console window...This is how i am initialising t
you can use api.getSelectedRows() that Returns a array of selected rows data.
public getSelectedRows(){ let rowsSelection = this.gridOptions.api.getSelectedRows(); console.info(rowsSelection); }
that's work for me.