navigation_status is a setting to display the program user their location in the table (table row number used in the interaction) in relation to the total table row number. The Navigation Status changes when the program user clicks the record navigation buttons of the program’s main menu or presses the Up, Down, Page Up or Page Down buttons on their keyboard.
Note: Before proceeding, get acquainted with the Settings Levels section of LyciaLowCode Settings page (the concept of scopes is essential for configuring multiple interactions and the multitable support).
The definitions like LET <setting_variable>.<setting_name> = <value> refer to the InteractForm_Settings level, while LET <setting_variable>.views["<db_table_name>"].<setting_name> = <value> refers to the View level.
This setting can be defined for:
InteractForm_Settings level: No
View level: Yes
Step 1. Add a TextField or a Label to your form;
Step 2. Use its identifier in the Lycia LowCode settings record.
Setting format:
<InteractForm_Settings>.views["<db_table_name>"].navigation_status STRING
<InteractForm_Settings> is the settings record variable you define.
Example:
LET rec_settings.views["test05"].navigation_status = "status_lb"
Here, rec_settings is a name of your settings record, and status_lb is the identifier of TextField or Label.