HI
I am using a radzenProgressBar that associated a submit button.
Before submit button is clicked, the radzenprogressBar is hidden or invisible, when the submit button is clicked, the radzenprogressBar visible, after the sumbit function finishes the job, then progressBar invisible again.
My codes like:
<div style="height: 53px" class="row" Visible="@isLoading">
<RadzenProgressBar style="height: 24px; width: 839px" Mode="ProgressBarMode.Indeterminate" Value="100" Visible ="@isLoading">
</RadzenProgressBar>
</div>
submit function is:
protected async System.Threading.Tasks.Task
OnSubmit(SoftwareImageDto dtoadd)
{
isLoading = true;
// do something
isLoading = false;
}
this does not work, do I do something wrong?
Thank you for help!
John