In need of a function to copy an entire row's data to the clipboard with a simple click. I have a Plunker link where I can only copy cell text:
http://plnkr.co/edit/EVrB5Ib9ZuqhbAMsV9Eg?p=preview
Below is the pseudocode for the Grid Options:
$scope.gridOptions = {
data: 'data',
enableRowSelection: true,
enableFullRowSelection: true,
enableHighlighting: true,
multiSelect: false,
enableRowHeaderSelection: false
};
When clicking on the second row, both 'A1' and 'B1' should be copied and pasted into a notepad or other application.