Show Custom Dialog
Click Specify to display the “Show Custom Dialog” Options dialog box, where you can set the dialog box title, message text, and buttons, and specify up to three fields to use for input or display.
•
|
Title lets you specify the title of the custom dialog box. You can enter literal text or click Specify to create the dialog box title from a calculation.
|
•
|
Message lets you specify the message of the dialog box.You can enter literal text or click Specify to create the message text from a calculation.
|
•
|
Button Labels let you specify how many buttons (up to three) to display in the custom dialog box and labels for these buttons. If you leave a button label blank, the button does not appear in the custom dialog box. If you leave all button titles blank, an OK button displays in the lower-right corner of the custom dialog box.
|
•
|
Commit Data checkboxes let you specify which buttons commit data to the database.
|
•
|
Select Show input field <n> to activate an input field.
|
•
|
Select Specify to choose the field for input. Each input area maps to one field.
|
•
|
Select Use password character (*) to mask text as it is entered, or as it is displayed from the database. This option obscures data being input into the custom dialog box or being displayed, but does not alter the actual data as it is stored in the database.
|
•
|
Use Label to specify a field label (the text that will identify this input to the user.) You can enter literal text or create the label from a calculation.
|
Where the script step runs
|
|
|
|
FileMaker Server scheduled script
|
|
|
|
|
|
|
|
|
|
The custom message dialog box can take user input for up to three fields in the database, and display data from up to three fields in the database. The script pauses as long as the custom dialog box stays on the screen. Fields used for input can be of type text, number, date, time, timestamp, or container. Your custom dialog box can also have up to three buttons, with custom button titles.
Use the Get(LastMessageChoice) function to determine which button the user presses.
•
|
1 for the first button (by default, labeled OK)
|
•
|
2 for the second button (by default, labeled Cancel)
|
The following performs a search using a custom dialog box. The dialog box asks users to enter a customer name and city. The dialog box shows a custom title, custom text, and two input fields.
#This script begins by entering Find mode.Enter Find Mode []
#The custom dialog box solicits the name and city of the customer to be found.
Show Custom Dialog ["Find a customer"; "Enter the name and city
of the customer below:"; Customers::Name; Customers::City]
#In this example, button 1 is "OK" and button 2 is "Cancel."
If [Get (LastMessageChoice) = 1]
#If the user selects button 1, the Find is performed.
Perform Find [Restore]
End If
The following creates a new record and enters data via a custom dialog box. The dialog box asks users to enter a product ID, product description, and product cost. The dialog box shows a custom title, custom text, and three input fields. If the user cancels the dialog box, the record is deleted.
#In this example, you must create a new record before you can enter data in it.
New Record/Request
#The custom dialog box solicits information from the user.
Show Custom Dialog ["Product information"; "Enter identifying
information for this product:"; Products::ProductID;
Products::Product description; Products::Product cost]
#After the user exits the custom dialog box, the script evaluates
which button the user has selected.
#In this example, button 1 is "OK" and button 2 is "Cancel."
If [Get (LastMessageChoice) = 2]
#If the user cancels the script, the record created at the beginning of the script is deleted.
Delete Record/Request [No dialog]
End If