I have a TelerikGrid utilizing the FilterRow for FilterMode. One of the columns is called CurrentVersion where the CurrentVersion could be a copy of multiple other objects but it's Revision is higher. The objects with CurrentVersion = true, I want to be the only initially displayed items. If there is an item that is CurrentVersion = false, I still want it to be accessible by changing the filter to All instead of True, but I need true to be the default. How would I go about this? I've checked documentation and can't find a solution. I've also checked online and other forums posts and can't seem to find a solution. ChatGPT and CoPilot are also no help here.
<TelerikGrid Data=@TestItemsList
FilterMode="GridFilterMode.FilterRow"
Sortable="true"
EditMode="GridEditMode.Inline"
Height="2000px">
<GridColumn Field="@nameof(TestModel.CurrentVersion)"
Title="Current Version"
Editable="true"
Filterable="true">
</TelerikGrid>
<TelerikGrid Data=@TestItemsList
FilterMode="GridFilterMode.FilterRow"
Sortable="true"
EditMode="GridEditMode.Inline"
Height="2000px">
<GridColumn Field="@nameof(TestModel.CurrentVersion)"
Title="Current Version"
Editable="true"
Filterable="true">
</TelerikGrid>