Spread for ASP.NET 8.0 Product Documentation > Client-Side Scripting Reference > Scripting Members > Events > onCopyData |
Occurs when copying data.
[Inline HTML]
<ELEMENT onCopyData = "handler" ...>
[Event Property]
FpSpread1.onCopyData = handler
[Named Script]
<SCRIPT FOR=FpSpread1 EVENT=onCopyData>
None
This event is triggered when data is copied. Set the argument to true to copy the column header.
This example JavaScript code maps the event for the Spread on the client side.
JavaScript |
Copy Code
|
---|---|
<script language="javascript" type="text/javascript"> window.onload = function () { var spread1 = document.getElementById("<%=FpSpread1.ClientID %>"); if (document.all) { // IE if (spread1.addEventListener) { // IE9 spread1.addEventListener("CopyData", copydata, false); } else { // Other versions of IE and IE9 quirks mode (no doctype set) spread1.onCopyData = copydata; } else { // Firefox spread1.addEventListener("CopyData", copydata, false); } } function copydata() { var event = window.event event.includeColHeader = false; } </SCRIPT> |