Menu
This type of widget represents a Menu block that can be useful for grouping actions and interactions to execute.
Settings
The available settings are described as below:
Name
This is the internal widget name, used as for database storage within entities.
The name must not contain special characters or spaces; only letters and numbers are allowed.
Alignment
This defines the positioning of the menu.
LeftCenterMenu
Visible
Indicates the visibility of the widget, can be configured with the following options:
Always: The widget is perpetually accessible.Script: When the script returnstrue, the widget becomes accessible; otherwise, it remains inaccessible. Here’s the script’s context:Parameters
Name Type Description record sys.data.Record This record is linked to the ongoing operation. Returns
boolean- You should returntrueif there is access to the widget,falseotherwise.Samples
// if 'numberOfExmployees' is bigger than 10, then this field is visible return record.field('numberOfEmployees').val() > 10;Expression: The widget becomes accessible if the expression evaluates totrue. More information is available in the Expressions documentation.Never: The widget will never be accessible.
Menu
This options enables to set entity related actions and view related interactions to the menu. The available settings are:
All: Includes all the actions and interactions present in the entity/view.Custom: Custom set of actions, interactions and groups defined by the developer.None: No actions or interactions will be shown.