Jed69 Posted August 5, 2009 Posted August 5, 2009 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
mr_vodka Posted August 5, 2009 Posted August 5, 2009 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
Recommended Posts
This topic is 5601 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 accountSign in
Already have an account? Sign in here.
Sign In Now