Hi,
I am have two grid and need to merge the data from the two grids. I get the datasource for each of the grid, but I am not sure how to merge the data. (I have tried push method on the observablearray but failed to merge the objects).
var items1= $scope.items1Grid.dataSource.data();
var items2= $scope.items2Grid.dataSource.data();
var mergedItems= items1.push(items2);
Anyway to accomplish this?
Thank you
YK