i have a table grid in my view,
i have 1 dropdown, and text boxes in table grid
on dropdow change am adding new row.
now if i have entered 5 rows and click save i want to save 5 records with row id
how to do that
my view
| Customer | Pendings | Pending Value | Amount | Account Name |
|---|---|---|---|---|
{{ReceiptsViewModel.PendingAmount}} |
angular
$scope.rvm = [{}];
// $scope.getProductDetails = function (row) {
$scope.GetAccountBalance = function () {
alert($scope.ID);
$scope.rvm.push({
});
});
Bikesh SrivastavaPosted Sep 16, 2016, 5:05 AM
Midhun TpPosted Sep 16, 2016, 4:36 AM