Loading...
15.
FR Toolbox Reference
<— Reactor Home
The following lists the suite of FRToolbox functions you can use for communicating with your FileMaker database.
The first section provides an introduction to management of a BlackBox in Reactor.
Reactor Tag
FileMaker calculation
Get parameter Value
Get value of field parameter
Get table occurrence of field name parameter
Get
‘where’
clause based on relationship
Get list of initial creation values based on relationship
Get container field images from container field name parameter
FRToolbox Requests
Find records
Constrain records
Send request
Poll request
Create record
Update records
Delete records
Calculation request
Perform script request
Request configurations
Utility methods
Set default database
FRToolbox version
Debugging
Date/time conversion
Get field and table occurrence
Reactor Actions
Reactor Tag
<?reactor reactor?>
Everything between these Reactor tags is interpreted by Reactor. This can be:
FileMaker calculation
You can perform any FileMaker calculation inside reactor tags
next_week_date_var = '
<?
reactor Get ( CurrentDate ) +
7
reactor
?>
';
Example output:
next_week_date_var = '22/06/2019
'
;
Please turn on JavaScript to use Paper in all of its awesomeness. ^_^
Reactor Tag
next_week_date_var = '<?reactor Get ( CurrentDate ) + 7 reactor?>';