Duplicated
Last Updated: 26 Aug 2025 11:31 by ADMIN
Mads
Created on: 26 Aug 2025 08:55
Category: UI for Blazor
Type: Bug Report
1
TelerikGrid<T>{ public virtual void Rebind() { ProcessDataAsync(); } }-> Can lead to race conditions.

namespace Telerik.Blazor.Components.Common;
TelerikGrid<T>
{

   public virtual void Rebind()   

      {       
            ProcessDataAsync(); 
      }

}

Rebind() doesnt use async/await, but ProcessDataAsync() does, which leads to race conditions.

Duplicated
This item is a duplicate of an already existing item. You can find the original item here:
0 comments