Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
How would I set up a filter that looked for null values in a numberic field?
filter currently looks like this:
'$and': [ { 'CompanyId': null }, { 'IsActive': true } ]
If I look for a value in CompanyId it works, but trying find items with null values (or "Not set") finds nothing.
Hello Cecil,
We current version of Kendo UI we have added isnull and isnotnull filter operators. You should use them in order to filter only values which are null.
Is there a value such as {field: 'CompanyId', operator: 'isnull', value true}?
Because I know it's got to be looking for something.
You can omit the value as the operator itself is holding the context: { field: "CompanyId", operator: "isnull" }