I wanted to add a new row into my existing grid. Also, the row which is getting pushed should be editable.
I tired below code and the row is getting added, But I wanted editable fields to be added
$scope.addNewItem=function() {
$scope.data.push( { name: 'Test add ' });
};
Can someone help me for the same.