0

I am new to using Blazor. I am currently using an app called Radzen. I have a page that uses tabs to complete a checklist. there are 5 tabs in all. In these tabs there is a save button that allows a user to save as they go. I would like the progress bar to track the progress as they save each tab. Is this possible? I am not seeing how to link the progress bar to anything. below is the code. Thanks in advance

<RadzenProgressBar Mode="ProgressBarMode.Determinate" ProgressBarStyle="ProgressBarStyle.Success" ShowValue="true" style="width: 274px">
  • You do know html5 has a native element called `` https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress – Brian Parker Aug 11 '22 at 03:55
  • I am building a so any elements I can do inside Radzen will save space on the server and save expenses. But it did give me a great idea so thanks for that!! – Daniel Kimbril Aug 12 '22 at 06:43
  • That was the point no library required no extra space & increased loading time you get it by default in the environment. – Brian Parker Aug 13 '22 at 22:28

1 Answers1

0

You can try this

@bind-Value="@value"

found on the official website of radzen radzen site

Denys
  • 3
  • 1
  • Taking into consideration I can just also just change the value of the progress bar and leave it as a static image versus actually linking it the progress of the page! Thanks – Daniel Kimbril Aug 12 '22 at 06:46