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

Glossary Item Box

Occurs when the user scrolls the sheet.

Syntax

[Inline HTML]

<ELEMENT onScroll = "handler" ...>

[Event Property]

FpSpread1.onScroll = handler

[Named Script]

<SCRIPT FOR=FpSpread1 EVENT=onScroll>

Arguments

event.horizontal
Horizontal scroll
event.vertical
Vertical scroll
event.spread
Spread control that raises the event

Return Type

None

Remarks

This event is triggered when the user scrolls the sheet.

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("Scroll", sheetScrolled, false);
      } else {
      // Other versions of IE and IE9 quirks mode (no doctype set)
        spread1.onScroll = sheetScrolled;
      }
      else {
      // Firefox
      spread1.addEventListener("Scroll", sheetScrolled, false);
      }
    }
    
    function sheetScrolled() {
      alert("You have scrolled the sheet!");
    }
</SCRIPT>

See Also

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