* add getter function and table transformation docs * add dropdown, number-input, password-input and text-input docs * [docs] custom parameters for queries * update docs for revamped components, runJS and runPy functions and sidebar * change order of properties and other misc changes * update query panel and other minor fixes * added version 2.29.0 --------- Co-authored-by: Shubhendra <withshubh@gmail.com>
1,010 B
| id | title |
|---|---|
| creating-widget | Creating Widgets |
Creating Widgets
These are some of the most useful properties and functions passed to the widget
properties
The properties object will contain the configurable properties of a widget, initially obtained from its definition on widgetConfig.js.
The values inside properties change whenever the developer makes changes to the inspector panel of ToolJet editor.
exposedVariables
The exposedVariables object will contain the values of all exposed variables as configured in widgetConfig.js.
setExposedVariable('exposedVariableName', newValue)
This function allows you to update the value of an exposed variable to newValue.
validate(value)
This function validates the value passed based on the validation settings configured on the inspector panel for the widget.
It returns an array [isValid, validationError], which represents respectively, whether the value passed is valid,
and the error message if there is one.