Thanks
I tried using the code in your sample link, when I click start, the progress runTask runs fine and the progress bar updates, but...the labels do not get changed.
I'm not familiar with the Callback so what else could I be missing, do I need to set any triggers on the callback, if so, what would they be??
The
runTask event fires and the
e.UpdateProgress(i, "Half done...") does execute
The following event also fires:
Protected Sub CallbackPanel1_Execute(ByVal sender As Object, ByVal e As EO.Web.CallbackEventArgs) Handles CallbackPanel1.Execute
If e.Parameter = "start" Then
e.Data = "start"
' Perform action before running progBar
lblFinished.Text = "running..."
<= this line does get hit but the label doesn't update ElseIf e.Parameter = "done" Then
e.Data = "done"
' Perform action after finished
lblFinished.Text = "Finished..."
<= this line does NOT get hit End If
End Sub
Do I need to set the CientSideOnTaskDone & ClientSideOnValueChanged properties of the ProgressBar? if so, what to?
Sorry for my lack of understanding here