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 () { function loadStop() { |