mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
Fix some typos from widgets
This commit is contained in:
parent
6efb37315b
commit
e97ebd6320
5 changed files with 11 additions and 11 deletions
|
|
@ -62,10 +62,10 @@ Each object in the array should include the following key-value pairs:
|
|||
|
||||
| <div style={{ width:"100px"}}> Variable </div> | <div style={{ width:"150px"}}> Description </div> | <div style={{ width:"135px"}}> How To Access </div> |
|
||||
|:-------- |:----------- |:--------- |
|
||||
| Value | Holds the value of the currently selected item on the dropdown.| Value can be accesed using `{{components.dropdown1.value}}` |
|
||||
| searchText | This variable is initially empty and will hold the value whenever the user searches on the dropdown. | searchText's value can be accesed using`{{components.dropdown1.searchText}}` |
|
||||
| label | The variable label holds the label name of the dropdown. | label's value can be accesed using`{{components.dropdown1.searchText}}` |
|
||||
| optionLabels | The optionLabels holds the option labels for the values of the dropdown. | optionLabels can be accesed using`{{components.dropdown1.optionLabels}}` for all the option labels in the array form or `{{components.dropdown1.optionLabels[0]}}` for particular option label |
|
||||
| Value | Holds the value of the currently selected item on the dropdown.| Value can be accessed using `{{components.dropdown1.value}}` |
|
||||
| searchText | This variable is initially empty and will hold the value whenever the user searches on the dropdown. | searchText's value can be accessed using`{{components.dropdown1.searchText}}` |
|
||||
| label | The variable label holds the label name of the dropdown. | label's value can be accessed using`{{components.dropdown1.searchText}}` |
|
||||
| optionLabels | The optionLabels holds the option labels for the values of the dropdown. | optionLabels can be accessed using`{{components.dropdown1.optionLabels}}` for all the option labels in the array form or `{{components.dropdown1.optionLabels[0]}}` for particular option label |
|
||||
| selectedOptionLabel | The variable holds the label of the selected option in the dropdown components. | The selected option label can be accessed dynamically using `{{components.dropdown1.selectedOptionLabel}}` |
|
||||
|
||||
</div>
|
||||
|
|
@ -118,4 +118,4 @@ Under the <b>General</b> accordion, you can set the value in the string format.
|
|||
Any property having `Fx` button next to its field can be **programmatically configured**.
|
||||
:::
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -140,7 +140,7 @@ Here's an example using the custom schema of **Text Input**, **Number Input** an
|
|||
"displayValues":[
|
||||
"Male",
|
||||
"Female",
|
||||
"Perfer not to Answer"
|
||||
"Prefer not to Answer"
|
||||
],
|
||||
"loading":false,
|
||||
"value":3,
|
||||
|
|
@ -805,4 +805,4 @@ radioButton1: {
|
|||
| value | Specifies the default selected value of the radio button. | Any value from the `values` array, like 2 |
|
||||
| values | Specifies the values in an array. | Array of values like `[1, 2, 3]` |
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -208,7 +208,7 @@ Use `{{listItem.key}}` to display data on the nested components. Example: For di
|
|||
|
||||
All the child components of the List View component are exposed through the `children` variable. This variable is an array of objects, where each object represents a record in the listview and contains the data of the child components.
|
||||
|
||||
The components inside the list view can be controlled using the javascipt queries. For example, if you want to disable the `button1` component in the first record, you can use the following expression:
|
||||
The components inside the list view can be controlled using the javascript queries. For example, if you want to disable the `button1` component in the first record, you can use the following expression:
|
||||
|
||||
```js
|
||||
components.listview1.children[0].button1.disable(true) // disables the button1 component in the first record
|
||||
|
|
@ -220,4 +220,4 @@ components.listview1.children[0].button1.disable(true) // disables the button1 c
|
|||
Currently, only those child components can be controlled using the javascript queries that have component specific actions implemented. To check if a component has component specific actions implemented, refer to the document of that **[specific component](/docs/widgets/overview)**.
|
||||
:::
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -373,7 +373,7 @@ To display email column, the key for the column should be `user.email`.
|
|||
Enable `editable` property of a column to make the cells editable. If a data type is not selected, `string` is selected as the data type.
|
||||
|
||||
:::tip
|
||||
You can programatically **enable**/**disable** the make **editable** field in the columns property by clicking on the **Fx** button.
|
||||
You can programmatically **enable**/**disable** the make **editable** field in the columns property by clicking on the **Fx** button.
|
||||
:::
|
||||
|
||||
If the data in a cell is changed, `changeSet` property of the table object will have the index of the row and the field that changed.
|
||||
|
|
|
|||
|
|
@ -204,7 +204,7 @@ When Server-side pagination is enabled, you'll be able to set three other Table
|
|||
Check this how-to guide to learn more about **[server-side pagination](/docs/how-to/use-server-side-pagination)**.
|
||||
:::
|
||||
|
||||
## Addional actions
|
||||
## Additional actions
|
||||
|
||||
### Show add new row button
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue