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
Copy file name to clipboardExpand all lines: controls/progressarea/progress-template.md
+118-2Lines changed: 118 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -34,13 +34,129 @@ You can let **RadProgressArea** automatically locate and update the values of th
34
34
|Speed|Speed|
35
35
|CancelButton|Cancel Button|
36
36
37
-
\* As of **Q2 2015** the *PrimaryProgressBarInnerDiv* and *SecondaryProgressBarInnerDiv* IDs are renamed respectively to **PrimaryProgressBarElement** and **SecondaryProgressBarElement** due to the new Lightweight rendering of the control.
37
+
>note As of **Q2 2015** the *PrimaryProgressBarInnerDiv* and *SecondaryProgressBarInnerDiv* IDs are renamed respectively to **PrimaryProgressBarElement** and **SecondaryProgressBarElement** due to the new Lightweight rendering of the control.
38
+
>
38
39
39
40
You can also update the values of elements in your template using the client-side [OnClientProgressBarUpdating]({%slug progressarea/client-side-programming/onclientprogressbarupdating%}) and [OnClientProgressUpdating]({%slug progressarea/client-side-programming/onclientprogressupdating%}) events to bind the values of custom controls you add in the template.
40
41
41
42
## Example
42
43
43
-
The following example shows a **RadProgressArea** with a progress template and **OnClientProgressBarUpdating** event handler:
progress.CurrentOperationText="Step "&i.ToString()&" Record "&j.ToString
150
+
151
+
'Stall the current thread for 0.1 seconds
152
+
System.Threading.Thread.Sleep(100)
153
+
Nextj
154
+
Nexti
155
+
EndSub
156
+
157
+
````
158
+
159
+
The following example shows a **RadProgressArea** with a progress template and **OnClientProgressBarUpdating** event handler for versions **before Q2 2015**:
0 commit comments