We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given the following data
[{age: 1}, {age: 2}, {age: null}]
when the oData query filter, $filter=age lt 2, is applied, you would not expect the last value to show up
$filter=age lt 2
https://stackblitz.com/edit/angular-rsabply1?file=src%2Fapp%2Fproducts.ts,src%2Fapp%2Fapp.component.ts
Set the filter to be less than today. You can see that undefined is filtered, but not null
less than today
I think it's because underneath, it's using JS default filter, i.e
[null, undefined, 1, 0].filter(x => x < 2) // [null, 1, 0]
No response
null is there
null not to be there
Chrome
latest
Windows
The text was updated successfully, but these errors were encountered:
Is this a feature, or is it a bug?
Sorry, something went wrong.
No branches or pull requests
Description
Given the following data
when the oData query filter,
$filter=age lt 2
, is applied, you would not expect the last value to show upSteps To Reproduce
https://stackblitz.com/edit/angular-rsabply1?file=src%2Fapp%2Fproducts.ts,src%2Fapp%2Fapp.component.ts
Set the filter to be
less than today
. You can see that undefined is filtered, but not nullI think it's because underneath, it's using JS default filter, i.e
Screenshots or video
No response
Actual Behavior
null is there
Expected Behavior
null not to be there
Browser
Chrome
Browser version
latest
OS type
Windows
OS version
No response
Last working version of the Kendo UI for Angular package (if regression).
No response
The text was updated successfully, but these errors were encountered: