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

Glossary Item Box

Occurs when rows finish loading with the background load on demand.

Syntax

[Inline HTML]

<ELEMENT onLoadRowsStopped = "handler" ...>

[Event Property]

FpSpread1.onLoadRowsStopped = handler

[Named Script]

<SCRIPT FOR=FpSpread1 EVENT=onLoadRowsStopped>

Arguments

event.rowsToBeLoaded
Integer, remaining rows to load
event.spread
Spread that raises the event

Return Type

None

Remarks

This event is triggered when the user scrolls and causes the next set of rows to load.

Example

This example JavaScript code maps the event for the Spread on the client side.

JavaScript Copy Code

window.onload = function () {
        var spread1 = document.getElementById("<%=FpSpread1.ClientID %>");
        if (document.all) {
            // IE
            if (spread1.addEventListener) {
                // IE9
                spread1.addEventListener("LoadRowsStart", loadStart, false);
                spread1.addEventListener("LoadRowsStopped", loadStop, false);
            } else {
                // Other versions of IE and IE9 quirks mode (no doctype set)
                spread1.onLoadRowsStart = loadStart;
                spread1.onLoadRowsStopped = loadStop;
            }
        } else {
            // Firefox
            spread1.addEventListener("LoadRowsStart", loadStart, false);
            spread1.addEventListener("LoadRowsStopped", loadStop, false);
        }
    }  
   
    function loadStart() {
      alert("start");
  }

  function loadStop() {
      alert("stopped");
  }

See Also

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