Jump to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Decision, decisions - status area

Featured Replies

short and sweet, what i do:

calculated fields

everything in the status area can be recreated.

jeremy

I've always had the train of thought that the status area isn't something that's generally left available to the user. Maybe it's that whole custom application look vrs. a FileMaker solution look. Recently a customer is asking to be able to see info that you would normally see in the status area in browse mode on a couple of layouts. ie: number of found, total count and current record number of found set.

This solution is supposed to be an "off the shelf product" but, you know, NOT.

What do you guys/gals normally do for the status area info. Should I give them access to the status area or create calculated fields?

  • 4 weeks later...

Definitely use calculated fields. You'll save lots of screen real estate and it will look much nicer.

Cael.

[ April 17, 2001: Message edited by: CaelC ]

  • 5 weeks later...

Hi

I use the Status() functions to recreate each of the values in the status area (eg Status(CurrentFoundCount) will return the number of records currently found)... there are similar functions for all the others, even one for sort status but you will need to convert the returned number to a text value to be of any use.

I then put these calculated values into merge fields on the layouts.

The trick is the go to the storage dialog in the calculation and ensure that the results are 'unstored'... that way they will update when there is a change.

Regards

[ May 16, 2001: Message edited by: amccallum ]

I also add a duplicate layout as a "Find" layout, where an "Omit" field has been added. I'll leave the pesky details to your imagination.

  • 3 weeks later...

Take a screen capture of the Record (Rolodex [tm]) area. Edit it in Photoshop or similar and make your own status area. Use calc field below to add record number or/and other info. Then make a scrip to lock the 'real' status area.

This will save you screen space and give you more control of what info the user gets/sees. To make it look more authentic, add the tiny lines of text you see on the real one, in calculated fields. When these are 'clicked' on the next or previous record will display.

Hope this summary of ideas helps.

Cheers,

Bill

  • 3 months later...

Absolutely excellent tips - but what about replicating the function of going to the record number via the editable "field" that is now the Status (CurrentRecordNumber) calculation?

  • 3 weeks later...

This may work for you. It is not completely "elegant" as the cursor flashes while it waits, but it's kind of nifty otherwise.

Create a global field (in this case "Global Pointer") and put it on top of your calculated Status(CurrentRecordNumber) field, which I have called "This Record". Give "This Record" the "do not allow entry" option.

Now make the global field a button and give it the following script:

Set Field ["Global Pointer", "This Record"]

Go to Field [select/Perform, "Global Pointer"]

Loop

Exit Loop If [(Global Pointer !=This Record) or (Status(CurrentFieldName) != "Global Pointer")]

Pause/Resume Script ["0:00:01"]

End Loop

Go to Record/Request/Page ["Global Pointer"]

Set Field ["Global Pointer", """"]

Go to Field []

When you enter the global field, the script enters a loop and waits for you either to change the value or to leave the field, upon which it goes to the record specified by the new value and ends.

I use this technique from time to time to allow "quick access" to records in a lot of situations. It doesn't require you to "enter" or "return" to activate the result. (Others may not like that.) If you bail on the field, the script also quits.

Hope this helps.

Charlie

This may work for you. It is not completely "elegant" as the cursor flashes while it waits, but it's kind of nifty otherwise.

Create a global field (in this case "Global Pointer") and put it on top of your calculated Status(CurrentRecordNumber) field, which I have called "This Record". Give "This Record" the "do not allow entry" option.

Now make the global field a button and give it the following script:

Set Field ["Global Pointer", "This Record"]

Go to Field [select/Perform, "Global Pointer"]

Loop

Exit Loop If [(Global Pointer !=This Record) or (Status(CurrentFieldName) != "Global Pointer")]

Pause/Resume Script ["0:00:01"]

End Loop

Go to Record/Request/Page ["Global Pointer"]

Set Field ["Global Pointer", """"]

Go to Field []

When you enter the global field, the script enters a loop and waits for you either to change the value or to leave the field, upon which it goes to the record specified by the new value and ends.

I use this technique from time to time to allow "quick access" to records in a lot of situations. It doesn't require you to "enter" or "return" to activate the result. (Others may not like that.) If you bail on the field, the script also quits.

Hope this helps.

Charlie

PS: It appears that when I post this message "does not equal" turns into !=.

Create an account or sign in to comment

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.