Completed
Last Updated: 13 Feb 2019 15:39 by ADMIN
Pruszkow
Created on: 01 Feb 2019 12:20
Category: GridView
Type: Bug Report
1
FIX. RadGridView - Filter issue with Excel-like filtering in RadGridView after last Telerik update

Dears

Looks like after last Telerik update to 2019.1.117.40 lilter do digits/numbers is not working any more. When I'd like filter out on decimal columns (or even text column but with linked decimal/int values) I get no results, no rows.

With text columns all is ok.

 

BR

Attached Files:
2 comments
Dimitar
Posted on: 13 Feb 2019 15:38
Hello,

A fix will be available in Telerik UI for WinForms version R1 2019 SP1.

Regards,
Dimitar
ADMIN
Dess | Tech Support Engineer, Principal
Posted on: 05 Feb 2019 10:52
Hello,         

According to the provided screenshots, it seems that the decimal separator is specified as ",".  I was able to replicate the filtering problem that you are facing. It seems to be a regression introduced in the latest version when addressing the following item: https://feedback.telerik.com/winforms/1372959-fix-radgridview-missing-filter-results-in-excel-like-filtering-when-the-decimal-separator-is-set-to

I have logged it in our feedback portal by making this thread public. You can track its progress, subscribe for status changes and add your comments on the following link - feedback item.

I have also updated your Telerik points.

Currently, the possible solution that I can suggest is to set the NumberDecimalSeparator to "." in the culture:

CultureInfo c = new CultureInfo("en-US", false);
NumberFormatInfo nfi = c.NumberFormat;
nfi.NumberDecimalSeparator = ".";
Thread.CurrentThread.CurrentCulture = c;

I hope this information helps. If you need any further assistance please don't hesitate to contact me. 

Regards,
Dess | Tech Support Engineer, Sr.
Progress Telerik

Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.