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
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