Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
AI-Enhanced UI Tools
CMS
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" }