Jump to content

List View Next Page


Jed69

This topic is 5399 days old. Please don't post here. Open a new topic instead.

Recommended Posts

When I display a list in web view it shows 25 records. I can show the next 25 by clicking the next page icon on the web view version of the Status Area. However most users do not have access to this area. Is it possible to replicate this action (seeing the next 25 records) with a button on the form?

Many thanks

John

Link to comment
Share on other sites

Pass in a Script parameter value of "Prev" and "Next" on buttons.

If [ Get (ScriptParameter) = "Prev" ]

Go to Record [ Get (RecordNumber ) - 25 ]

Else If [ Get (ScriptParameter) = "Next" ]

Go to Record [ Get (RecordNumber ) + 25 ]

End If

Link to comment
Share on other sites

This topic is 5399 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.