我正在使用智能表来显示网格。
网格是可编辑的。我希望将更新的网格捕获回.js文件。
这样我就可以对更新的值进行一些操作并将其显示在另一个网格中。 下面是.js代码。 $ scope.rowCollection = [{Item:" Experiment",Budget:30,Investment:22,Profit:2}, {Item:" Gross subs",Budget:23,Investment:21,Profit:2}, {Item:" Communication channel",Budget:27,Investment:25,Profit:2}, {Item:" Link number",Budget:26,Investment:19,Profit:7}, {Item:" Digital",Budget:24,Investment:20,Profit:4}];
$scope.globalConfig = {
isPaginationEnabled: false,
itemsByPage: 20,
syncColumns: false,
};
$scope.columnCollection = [{ label: 'Item', map: 'Item',width:'50px' },
{ label: 'Budget', map: 'Budget' },
{ label: 'Investment', map: 'Investment' },
{ label: 'Profit', map: 'Profit' }];
单击按钮,我想获取已编辑的网格及其各个单元格值。
有什么想法吗?