Completed
Last Updated: 11 Jun 2021 10:53 by ADMIN
Release R2 2021 SP1
Oliver
Created on: 12 May 2021 09:51
Category: GridView
Type: Bug Report
0
RadGridView: missing rows when Double.NaN is selected in Excel-Style grid filtering

Please refer to the attached sample project and follow the steps in the gif file.

Workaround: custom filtering to control which rows to be visible or not: https://docs.telerik.com/devtools/winforms/controls/gridview/filtering/custom-filtering 

        private void radGridView1_CustomFiltering(object sender, GridViewCustomFilteringEventArgs e)
        {
            e.Handled = true;
            e.Visible =  e.Row.Cells["Value"].Value.Equals( Double.NaN);
        }

0 comments