What Changed
We changed the default value of the Data Grid's ShowFilterRow property to false.
Reasons for Change
The filter row occupies a part of the Data Grid space and is not required in many applications. To hide this row, customers have to disable the ShowFilterRow option manually.
In v20.1.5, we decided to hide the filter row by default and make the Data Grid UI more lightweight and compact.
Impact on Existing Apps
This change affects the Data Grid UI and behavior if you did not specify the ShowFilterRow property explicitly.
How to Revert to Previous Behavior
Set the ShowFilterRow property to true. You can also use a new AllowFilter property to hide filter row editors for individual columns.
Razor<DxDataGrid Data="@DataSource"
ShowFilterRow="true">
@*...*@
<DxDataGridColumn Field="@nameof(Order.Product)"
AllowFilter="false">
</DxDataGridColumn>
@*...*@
</DxDataGrid>