Spread for ASP.NET 7.0 Product Documentation
onCallBackStopped
See Also Support Options
Spread for ASP.NET 7.0 Product Documentation > Client-Side Scripting Reference > Scripting Members > Events > onCallBackStopped

Glossary Item Box

Occurs after the Spread component gets the result from the callback request to the ASPX page.

Syntax

[Inline HTML]

<ELEMENT onCallBackStopped = "handler" ...>

[Event Property]

FpSpread1.onCallBackStopped = handler

[Named Script]

<SCRIPT FOR=FpSpread1 EVENT=onCallBackStopped>

Arguments

event.command
Command name of the callback

Return Type

None

Example

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("CallBackStart", CallBackStart, false);
     spread1.addEventListener("CallBackStopped", CallBackStopped, false);
      } else {
     // Other versions of IE and IE9 quirks mode (no doctype set)
      spread1.onCallBackStart = CallBackStart;
      spread1.onCallBackStopped = CallBackStopped;
      }
      else {
      // Firefox
      spread1.addEventListener("CallBackStart", CallBackStart, false);
      spread1.addEventListener("CallBackStopped", CallBackStopped, false);
     }
   }
   
   function CallBackStart(event) {
    if (event==null) event = window.event;
       alert("start");
    }
   
   function CallBackStopped() {
       alert("stop");
   }
</SCRIPT>

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.