diff --git a/docs/docs/widgets/dropdown.md b/docs/docs/widgets/dropdown.md
index 0882bb0ddc..8e3d923d27 100644
--- a/docs/docs/widgets/dropdown.md
+++ b/docs/docs/widgets/dropdown.md
@@ -62,10 +62,10 @@ Each object in the array should include the following key-value pairs:
|
Variable
| Description
| How To Access
|
|:-------- |:----------- |:--------- |
-| 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}}` |
@@ -118,4 +118,4 @@ Under the General accordion, you can set the value in the string format.
Any property having `Fx` button next to its field can be **programmatically configured**.
:::
-
\ No newline at end of file
+
diff --git a/docs/docs/widgets/form.md b/docs/docs/widgets/form.md
index 1f8a2e265b..738ce981fc 100644
--- a/docs/docs/widgets/form.md
+++ b/docs/docs/widgets/form.md
@@ -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]` |
-
\ No newline at end of file
+
diff --git a/docs/docs/widgets/listview.md b/docs/docs/widgets/listview.md
index 7ef6afa4c9..fb5ae13ca9 100644
--- a/docs/docs/widgets/listview.md
+++ b/docs/docs/widgets/listview.md
@@ -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)**.
:::
-
\ No newline at end of file
+
diff --git a/docs/docs/widgets/table.md b/docs/docs/widgets/table.md
index e17e584d16..f4d2cab8a2 100644
--- a/docs/docs/widgets/table.md
+++ b/docs/docs/widgets/table.md
@@ -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.
diff --git a/docs/docs/widgets/table/properties.md b/docs/docs/widgets/table/properties.md
index bf5c542f88..c03b08c98d 100644
--- a/docs/docs/widgets/table/properties.md
+++ b/docs/docs/widgets/table/properties.md
@@ -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