What Changed
In v21.1.6 and later, DevExpress ASP.NET Grid View generates the IsNullOrEmpty([Field_Name])
and Not IsNullOrEmpty([Field_Name])
filter criteria for the following filter items:
-
'Blanks' and 'Non blanks' - in the header filter.
-
'Is blank' and 'Is not blank' - in the filter builder.
Reasons for Change
In previous versions, the control generated different filter criteria for the filter items mentioned above:
-
Header filter.
'Blanks' -
IsNullOrEmpty([Field_Name])
'Non blanks' -Not IsNullOrEmpty([Field_Name])
-
Filter builder.
'Is blank' -
[Field_Name] Is Null
'Is not blank' -[Field_Name] Is Not Null
As a result, the grid differently filtered its items by these filter conditions.
Impact on Existing Apps
This change will not affect your application. This change will be applied only to the newly created filter criteria. If you wish old and new criteria to have the same behavior we recommend that you update them or recreate them from scratch.