Variables

Global variables

Global variables are core variables with global scope, meaning that they can be accessed throughout the entire application.

{﹪ globalVariable ﹪}
🛈See all available variables

Special variables

Special variables are variables with global scope, meaning that they can be accessed throughout the entire application.

Querystring

{# ?QuerystringVariable #}
The bind attribute is required, but will be deprecated in the future.

Local variables

Local variables are variables with local scope, meaning that they can only be accessed inside of the current running application page.

{{ localVariable }}

Library variables

Library variables are extra variables with global scope, meaning that they can be accessed throughout the entire application when libraries are imported.

{{ library:variable }}