Components | All | New | MacOS | Windows | Linux | iOS | ||||
Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old |
MBS FileMaker Plugin Example Databases
Formfield sample
All examples are included with download of MBS FileMaker Plugin.
Overview | |
Tables | 1 |
Relationships | 0 |
Layouts | 1 |
Scripts | 0 |
Value Lists | 1 |
Custom Functions | 0 |
Custom Menus | 32 |
File Options | |
Default custom menu set | [Standard FileMaker Menus] |
When opening file | |
Minimum allowed version | 12.0 |
Login using | Account Name; Account= Admin |
Allow user to save password | Off |
Require iOS passcode | Off |
Switch to layout | Off |
Hide all toolbars | Off |
Script triggers | |
OnFirstWindowOpen | Off |
OnLastWindowClose | Off |
OnWindowOpen | Off |
OnWindowClose | Off |
OnFileAVPlayerChange | Off |
Thumbnail Settings | |
Generate Thumbnails | On; Temporary |
Table Name |
Statistics
| Occurrences in Relationship Graph |
Formfield sample |
8 fields defined, 2 records
| Formfield sample |
Layout Objects: Formfield sample
Field Name: Formfield sample::simpletextfield | |||||
Field Properties | Coordinates | Field Format | Field Behavior | Quick Find | |
|
| Field Format:
| Field Behavior:
| Yes |
Field Name: Formfield sample::passwordfield | |||||
Field Properties | Coordinates | Field Format | Field Behavior | Quick Find | |
|
| Field Format:
| Field Behavior:
| Yes |
Field Name: Formfield sample::textareafield | |||||
Field Properties | Coordinates | Field Format | Field Behavior | Quick Find | |
|
| Field Format:
| Field Behavior:
| Yes |
Field Name: Formfield sample::singleselect | |||||
Field Properties | Coordinates | Field Format | Field Behavior | Quick Find | |
|
| Field Format:
| Field Behavior:
| Yes |
Field Name: Formfield sample::multiselect | |||||
Field Properties | Coordinates | Field Format | Field Behavior | Quick Find | |
|
| Field Format:
| Field Behavior:
| Yes |
Field Name: Formfield sample::hierarchicalselect | |||||
Field Properties | Coordinates | Field Format | Field Behavior | Quick Find | |
|
| Field Format:
| Field Behavior:
| Yes |
Field Name: Formfield sample::checkboxes | |||||
Field Properties | Coordinates | Field Format | Field Behavior | Quick Find | |
|
| Field Format:
| Field Behavior:
| Yes |
Field Name: Formfield sample::radiobuttons | |||||
Field Properties | Coordinates | Field Format | Field Behavior | Quick Find | |
|
| Field Format:
| Field Behavior:
| Yes |
Button Properties | Coordinates | Script/Script Step | |||
|
| Set Variable [ $result; Value:MBS( "WebView.SetFormInputValue" ; "web"; "myform"; "simplefield"; Formfield sample::simpletextfield ) ] Fields: |
Button Properties | Coordinates | Script/Script Step | |||
|
| Set Variable [ $result; Value:MBS( "WebView.SetFormInputValue" ; "web"; "myform"; "passwordfield"; Formfield sample::passwordfield ) ] Fields: |
Button Properties | Coordinates | Script/Script Step | |||
|
| Set Variable [ $result; Value:MBS( "WebView.SetFormTextAreaValue" ; "web"; "myform"; "textareafield"; Formfield sample::textareafield ) ] Fields: |
Button Properties | Coordinates | Script/Script Step | |||
|
| Set Variable [ $result; Value:MBS( "WebView.SetFormSelectValue" ; "web"; "myform"; "selectsingle"; Formfield sample::singleselect ) ] Fields: |
Button Properties | Coordinates | Script/Script Step | |||
|
| Set Variable [ $result; Value:MBS( "WebView.SetFormSelectValue" ; "web"; "myform"; "selectmultiple"; Formfield sample::multiselect ) ] Fields: |
Button Properties | Coordinates | Script/Script Step | |||
|
| Set Variable [ $result; Value:MBS( "WebView.SetFormSelectValue" ; "web"; "myform"; "selecthierarchical"; Formfield sample::hierarchicalselect ) ] Fields: |
Button Properties | Coordinates | Script/Script Step | |||
|
| Set Variable [ $result; Value:MBS( "WebView.SetFormInputChecked" ; "web"; "myform"; 2 + Formfield sample::radiobuttons; 1) ] Fields: |
Button Properties | Coordinates | Script/Script Step | |||
|
| Set Variable [ $result; Value:MBS( "WebView.SetFormInputChecked" ; "web"; "myform"; "check1"; Position ( Formfield sample::checkboxes ; "0"; 1; 1 ) > 0 ) &
MBS( "WebView.SetFormInputChecked" ; "web"; "myform"; "check2"; Position ( Formfield sample::checkboxes ; "1"; 1; 1 ) > 0 ) &
MBS( "WebView.SetFormInputChecked" ; "web"; "myform"; "check3"; Position ( Formfield sample::checkboxes ; "2"; 1; 1 ) > 0 ) ] Fields: |
Button Properties | Coordinates | Script/Script Step | |||
|
| Set Field [ Formfield sample::simpletextfield; MBS( "WebView.GetFormInputValue" ; "web"; "myform"; "simplefield" ) ] Fields: |
Button Properties | Coordinates | Script/Script Step | |||
|
| Set Field [ Formfield sample::passwordfield; MBS( "WebView.GetFormInputValue" ; "web"; "myform"; "passwordfield") ] Fields: |
Button Properties | Coordinates | Script/Script Step | |||
|
| Set Field [ Formfield sample::textareafield; MBS( "WebView.GetFormTextAreaValue" ; "web"; "myform"; "textareafield" ) ] Fields: |
Button Properties | Coordinates | Script/Script Step | |||
|
| Set Field [ Formfield sample::singleselect; MBS( "WebView.GetFormSelectValue" ; "web"; "myform"; "selectsingle") ] Fields: |
Button Properties | Coordinates | Script/Script Step | |||
|
| Set Field [ Formfield sample::multiselect; MBS( "WebView.GetFormSelectValue" ; "web"; "myform"; "selectmultiple" ) ] Fields: |
Button Properties | Coordinates | Script/Script Step | |||
|
| Set Field [ Formfield sample::hierarchicalselect; MBS( "WebView.GetFormSelectValue" ; "web"; "myform"; "selecthierarchical" ) ] Fields: |
Button Properties | Coordinates | Script/Script Step | |||
|
| Set Field [ Formfield sample::radiobuttons; MBS( "WebView.GetFormInputChecked" ; "web"; "myform"; 2)*0+
MBS( "WebView.GetFormInputChecked" ; "web"; "myform"; 3)*1+
MBS( "WebView.GetFormInputChecked" ; "web"; "myform"; 4)*2 ] Fields: |
Button Properties | Coordinates | Script/Script Step | |||
|
| Set Field [ Formfield sample::checkboxes; Let (
[
check1 = MBS( "WebView.GetFormInputChecked"; "web"; "myform"; "check1");
check2 = MBS( "WebView.GetFormInputChecked"; "web"; "myform"; "check2");
check3 = MBS( "WebView.GetFormInputChecked"; "web"; "myform"; "check3");
result1 = Case ( check1 ; "0"; "" );
result2 = Case ( check2 ; "1"; "" );
result3 = Case ( check3 ; "2"; "" )
];
result1 & ¶ & result2 & ¶ & result3
) ] Fields: |
Web Viewer Control Properties | Coordinates | Web Address | |||
|
| "https://www.monkeybreadsoftware.com/filemaker/examples/formfields.html" |
Value List Name | Source | Values | On Layouts |
Neue Werteliste | Custom |
|
Download example: Formfield sample
Used functions: