Skip to content

Function Parameters

Introduction

All functions for dynamic fields are defined with the same parameters:

js
(c, f, i, n, r, v, e, t) => {
  // Code goes here
};

Each of these parameters is a special object that provides access to different parts of the app. You can use any of these parameters to return the desired value from the function.

The Parameters

c

Provides access to all the defined Cookies in the Data Store. See the Cookies section for more information.

f

Provides access to all the defined Forms in the Data Store. See the Forms section for more information.

i

Provides access to all the defined Input Fields in the Data Store. See the Input Fields section for more information.

n

Provides access to all the defined Navigation items in the Data Store. See the Navigation section for more information.

r

Provides access to all the Requests' data in the Data Store. See the Requests section for more information.

v

Provides access to all the defined Variables in the Data Store. See the Variables section for more information.

(Conditional) e

Provides access to the Event object, if the function is triggered by an element event (for example a click event). See the On Event section for more information.

(Conditional) t

Provides access to the Wized Element object that defines the element that is associated with the function. This parameter is only available for element actions.