I want to move one table row select by checkbox and push by button click and move in second table
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Gurmeet SinghPosted Dec 6, 2016, 7:28 AM
$('#one input:checked').each(function () {
for (var i = 0; i < $scope.getitems.length; i++) {
//var items = $scope.itemslst[i];
//if ($scope.getitems[i].Itemid == id)
$scope.itemslst.push($scope.getitems[i]);
}
})
Manas MohapatraPosted Dec 6, 2016, 1:20 AM