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.

Featured Replies

I have placed a sliding panel on my users dashboard screen and I'm trying to get FM to remember what panel the user was on whenever they leave the dashboard layout. When the user returns to the dashboard they are presented with the panel they were originally viewing.

Is there a way to get FileMaker to remember the active panel or must the panels be labeled as objects?

Yes, you can ask FM for what the frontmost tab(s) are and then use "goto object" to reselect them.  

 

Here's a custom function that will return the list of active tabs (can be multiple if you tabs within tabs)

 

/*

_UI_frontTabs( layoutObjects; parent)

example:

_UI_frontTabs ( LayoutObjectNames ( Get ( FileName ) ; Get ( LayoutName ) ) ; "" )

*/  

 

Let( [

 

thisValue = GetValue ( layoutObjects; 1 );

 

isFront = GetLayoutObjectAttribute ( thisValue ; "isFrontTabPanel" );

 

isTop =  IsEmpty( GetLayoutObjectAttribute ( thisValue ; "EnclosingObject"));

 

myParent = GetLayoutObjectAttribute ( thisValue ; "EnclosingObject");

 

myobjects = GetLayoutObjectAttribute ( thisValue ; "ContainedObjects");

 

parent = Case( isFront and isTop; thisValue; GetValue(parent; 1))

 

 

];

 

Case ( ValueCount ( layoutObjects ) > 0;

 

Case (

isFront and isTop ;   thisValue & "¶" ;

isFront and (myParent = parent ) ;   thisValue & "¶" & _UI_frontTabs ( myobjects ; thisvalue) 

) & 

 

_UI_frontTabs ( RightValues ( layoutObjects; ValueCount ( layoutObjects ) - 1) ; parent)

 

)

)

  • Author

Cheers, Wim!

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.