copies the value of a row to the clipboard
rowId | string|number | the id of a row (optional, uses the selected row by default) |
Available only in PRO Edition
<a href="javascript:void(0)" onclick="copyData()">
Copy selected row (with tab as delimiter) to clipboard
</a>
<script>
function copyData(type,delim){
myTreeGrid.setCSVDelimiter('\t');
myTreeGrid.rowToClipboard();
}
</script>
Back to top