When enabling a GridSearchBox in my Grid, while I'm typing or deleting letters from the search box, I get spammed in my Ouput from Debug with
"Exception thrown: 'System.Threading.Tasks.TaskCanceledExceptuion' in System.Private.CoreLib.dll"
Here is my code:
Details:
Call Stack:

"Exception thrown: 'System.Threading.Tasks.TaskCanceledExceptuion' in System.Private.CoreLib.dll"
Here is my code:
<TelerikGrid Data=@TestItemsList
FilterMode="GridFilterMode.FilterRow"
Sortable="true"
EditMode="GridEditMode.Inline"
Height="2000px"
FilterRowDebounceDelay="300">
<GridToolBarTemplate>
<GridCommandButton Command="Add" Icon="@SvgIcon.Plus" Enabled="@UserModel.CanEdit()">Add Item</GridCommandButton>
<GridSearchBox Fields="@SearchableFields" Placeholder="Search..." Width="300px" />
</GridToolBarTemplate>
<GridColumns>
<GridColumn Field="@nameof(TestModel.FileName)"
Title="File Name"
Editable="false" />
<GridCommandColumn>
<GridCommandButton Command="Save"
Icon="@SvgIcon.Save"
ShowInEdit="true"
Enabled="@UserModel.CanEdit()"
OnClick="@OnUpdate">
Update
</GridCommandButton>
<GridCommandButton Command="Edit"
Icon="@SvgIcon.Pencil"
Enabled="@UserModel.CanEdit()">
Edit
</GridCommandButton>
<GridCommandButton Command="Delete"
Icon="@SvgIcon.Trash"
Enabled="@UserModel.CanEdit()"
OnClick="@OnDelete">
Delete
</GridCommandButton>
<GridCommandButton Command="Cancel"
Icon="@SvgIcon.Cancel"
ShowInEdit="true"
Enabled="@UserModel.CanEdit()">
Cancel
</GridCommandButton>
</GridCommandColumn>
</GridColumns>
</TelerikGrid>
@* Only showing relevent code here *@
@code {
private List<string> SearchableFields = new List<string> { nameof(SDSModel.Title), nameof(SDSModel.FileName) };
}
Details:
System.Threading.Tasks.TaskCanceledException HResult=0x8013153B Message=A task was canceled.
Call Stack: