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 6538 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

I am building an IWP contact management DB and considering to use the built in list view instead of the slightly more complicated portal route. The 25 records is ok with me as long as the user has a forward and backward button to display the next list.

My question is i would like to hide the status bar and would therefore need to create a script to replace the "Next Range of Records" page button presented in the status bar but can not find it. "Go to Record/request/Page [Next] will only take me to the next record. Is there a way of doing this?

  • 3 weeks later...
Posted

Even better, use these calcs for forward and back:

Forward:


Let(

[ 

 N= Get(FoundCount) ;

 X = Get(RecordNumber) ;

 Y = X + 25

] ;

Case(

 Y > N; X;

 Y 

 )

)





Back:



Let(

[ 

 X = Get(RecordNumber) ;

 Y = X - 25

 ] ;

Case(

 Y < 1; 1;

 Y 

 )

)

The advantage here is that it keeps your record # consistent as you reach the end of the list and then back up. Otherwise, if your # of records is not a multiple of 25, when you hit the end and come back, you'll be on a different record number.

  • 4 weeks later...
Posted

I am trying to set up the same thing, but what I don't understand is how to trigger the scripts. When I switch to list view in IWP and the status bar is hidden, there are no controls, no header, etc. Where do I put the buttons for list view?

Thanks.

  • 2 weeks later...
Posted

I am trying to set up the same thing, but what I don't understand is how to trigger the scripts. When I switch to list view in IWP and the status bar is hidden, there are no controls, no header, etc. Where do I put the buttons for list view?

Thanks.

I wonder if you are confusing List view with Table view? You have to add buttons to the layout. They can go in the header or footer, or on the list item body itself.

In Table view you can't use buttons in the body, so they'd have to go in the header or footer. To see the header/footer in Table view, make sure you enable them in the Layout setup dialog for Table view options.

Posted

I'm trying to something similar, but would like to remove the 25 record limit and display all records (I currently only have 55 records). Is there a way to do this?

Thanks

Posted

You can set it up as a portal instead -- portals can show an infinite # of records and respond to mouse scroll wheels, so they aren't horrible ways to look at the data.

But it sure would be nice if the 25 limit for lists was changeable.

Posted

If I set up a self join relationship with Constant_1 as the link, I get one record repeated 55 times. Is there another join I should use?

Thanks

Posted

I wonder if you are confusing List view with Table view?

Aha. You are correct.

In Table view you can't use buttons in the body, so they'd have to go in the header or footer. To see the header/footer in Table view, make sure you enable them in the Layout setup dialog for Table view options.

Yes, that's what I was missing. I didn't realize I had to enable the header for table view. Thanks!

Ken

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