Automatic adjustments

Ninox automatically makes the following adjustments for you

💡Braces

Ninox script automatically removes superfluous braces in expressions. For example, 1 + (2 * 3) is saved as 1 + 2 * 3.

💡Whitespaces

Ninox script automatically removes unnecessary whitespaces in expressions. For example, text (year (today () ) ) is saved as text(year(today())). However, the script also adds whitespace where it is deemed useful, e.g., to enhance readability.

💡Field name

You can always change the name of a field without having to modify the script afterward. The field name is only a reference to the field ID. The field ID cannot be changed.

💡 Semicolon

When declaring a variable, Ninox automatically adds a semicolon at the end.

💡 Indentations

When writing a script, Ninox automatically takes care of the indentations upon saving.

Last updated