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

There's a bit of a thread on the FM Community site about working with lists, to which I wrote an example SM function which I post here for interest....

https://community.filemaker.com/thread/188322

 

// liststest ( list1 ; list2 ; select? ; separator? )
// 18_07_10 JR
// v1.1
// 
//

JOIN = select?select.toInteger():1
LISTA = list1?list1.tokenize('\n'):[]
LISTB = list2?list2.tokenize('\n'):[]

SEP = separator?separator:' - '

switch(JOIN){

case 1: 
	LISTA.addAll(LISTB)
	return LISTA
break
case 2: 
	LISTA.removeAll(LISTB)
	return LISTA
break
case 3: 
	LISTB.removeAll(LISTA)
	return LISTB
break
case 4: 
	LISTA.addAll(LISTB)
	return LISTA.unique()
break
case 5: 
	result = ''
	LISTA.each(){
		def start = it
		LISTB.each(){
			result += start + SEP + it + '\n'
		}
	}
	return result
break
case 6: 
	if(LISTA.size() != LISTB.size()){
		return 'lists not same size'
	} else {
		result = ''
		i = 0
		LISTA.each(){
			result += it + SEP + LISTB.getAt(i) + '\n'
			i++
		}
	}
	return result
break
}

return 'select out of range'

 

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.