1
我想在angular-ui網格中選擇一行並將該行復制到剪貼板。在角度ui網格中選擇一行時只獲取可見列
這是我的代碼:
$scope.copySelection = function() {
$scope.retainSelection = $scope.gridApi.selection.getSelectedRows();
alert(JSON.stringify($scope.retainSelection));
var input = document.createElement("input");
input.type = "text";
document.getElementsByTagName('body')[0].appendChild(input);
input.value = JSON.stringify($scope.retainSelection);
input.select();
document.execCommand("copy");
input.hidden = true;
$scope.gridApi.selection.clearSelectedRows();
};
Plunker:http://plnkr.co/edit/dcj7DUWHyA3u1bouxRhI?p=preview
不過,我只是想複製的可見列,但我得到所有這一切都在JSON列。我不想要隱藏的列。我怎麼做?請幫忙。
可以添加小提琴嗎? –
@MuhammedNeswine我編輯了我的問題 –