I need to make row editable instead of each field/column. I am also following the tutorial for tutorial for row edit feature
Please find the plnkr link also where I am trying to make row editable instead of each column. I have the button on each row but it doesn't have any functioning.
$scope.gridOptions.columnDefs = [
{ name: 'id'},
{ name: 'age' },
{name: " Edit" , cellTemplate:'<button class=\"btn btn-xs btn-primary\" ng-click=\"grid.appScope.openModal(grid, row)\"> <i class="fa fa-edit" ></i></button>' }];