You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The on change behavior property lets users select how **on change** is handled in Studio Pro via the following options:
149
-
150
-
***When user leaves input field (Default)**
151
-
***While user is entering data**
152
-
153
-
##### 3.9.2.1 When User Leaves Input Field (Default)
154
-
155
-
Text area will apply changes when a value is different than a previously saved value in the database and the following condition is met:
156
-
157
-
* Blurred: this will trigger on change and on leave events
158
-
159
-
This means that there is no way for users to trigger an on change event while typing. To address that use case, please use the second option: [While user is entering data](#user-enters-data).
160
-
161
-
##### 3.9.2.2 While User is Entering Data {#user-enters-data}
162
-
163
-
This option allows users to trigger an on change event while they are typing.
164
-
165
-
Text area will save changes if both these conditions are met:
166
-
167
-
* The value is different than the previously saved value in the database
168
-
* The last change occurred after the configured **Apply after (ms)** length of time
169
-
170
-
With **While user is entering data**, users can adjust one more property called **Apply after (ms)** (described above). This will reduce the amount of the calls made for an on change event, thus improving app performance.
The on leave property specifies an action that will be executed when leaving the widget, either by using the <kbd>Tab</kbd> key or by clicking another widget.
183
154
@@ -187,8 +158,6 @@ This differs from the [on change](#on-change) property in that the event will al
187
158
188
159
### 3.10 On Change Behavior {#on-change-behavior}
189
160
190
-
### 3.10 On Change Behavior {#on-change-behavior}
191
-
192
161
The On Change Behavior property lets users select how **on change** is handled via the following options Studio Pro:
0 commit comments