Spread ASP.NET 6.0 Product Documentation
Next
Send Feedback
Spread ASP.NET 6.0 Product Documentation > Client-Side Scripting Reference > Scripting Members > Methods > Next

Glossary Item Box

Changes the display to show the next page.

Syntax

[JavaScript]

FpSpread1.Next();

Parameters

None

Return Type

None

Remarks

This method is similar to pressing the Next (>>) button on the command bar or the other page navigation aids; it advances one page to display the next set of rows. If there is not a next page, the Spread stays on the current page. This method causes a postback to occur. When this method is called, the TopRowChanged event is raised on the server.

Example

This is a sample that contains the method. On the client side, the script that contains the method would look like this:

JavaScript Copy Code
<SCRIPT language=javascript>
   function onNextButtonClick() { 
       FpSpread1.Next();
   } 
</SCRIPT>

See Also

Prev | Scripting Members

© 2002-2012 GrapeCity, Inc. All Rights Reserved.