Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

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

Recommended Posts

Posted

Hello,

I published my db to the web and I am having the following problem.

When viewing a list of expenses (list view) and on the left-hand side you can click, "Next Range of Records" and it takes you to page 2 to view that listing. I'd like to create my own button for this feature, however, I am only able to pick next record. When I read up on next page, that is only for reports. And this layout of the db is not a report. I will be taking away the side status bar for the user b/c I don't want them to have that much access. Any other suggestions?

Thank you in advance,

Mary

  • 2 weeks later...
Posted

SOLUTION...

[color:blue]Increment next range of records

Let (incrementby = If (Get(FoundCount) > 25 and Get (LayoutViewState) = 1 ; 25 ; 1) ;

If ((Get(RecordNumber) + incrementby > Get (FoundCount) ;

Get (FoundCount) - incrementby ;

Get (RecordNumber) + incrementby))

[color:blue]Decrement previous range of records

Let (decrementby = If (Get(FoundCount) > 25 and Get (LayoutViewState) = 1 ; 25; 1) ;

If ((Get(RecordNumber) + decrementby) > 1 ;

Get (RecordNumber) + decrementby ;

1))

This topic is 6134 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.