Breaking Change T903275
Visible to All Users

Data Grid - The filter row has become hidden by default

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.

data-grid-filter-row-visible.png

In v20.1.5, we decided to hide the filter row by default and make the Data Grid UI more lightweight and compact.

data-grid-filter-row-hidden.png

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>

Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.