I have a list of users and I want to show the number of the list in RadzenTextBox. something like this:
<RadzenTextBox @bind-Value=@total Style="width: 80px; text-align: right" Change=@(args => OnChange(args)) />
So @total is the number of users and I set it in OnInitialized()
Then I add one user to the list and I set @total again in OnAfterRender() or OnAfterRenderAsync(). @total was changed (I console in OnAfterRender() ) but my view dont re-render.
It only renders when I add the second time. I dont know why