Hello,
i'm using ig grid filters with showNullConditions option. Default filter condition is "contains". If i filter by "null" condition, filter name become "Null". Then if i clear filter, the name remains "Null", but real filter become default filter ("contains"). How to solve such situation?
Thank you.
OK. Thanks.
I'm just checking if you have tested the fix and if you are satisfied with the result.
Hi there,The development issue has been resolved by our developers.The fix will be available in both the upcoming volume release for Ignite UI (2013.1) and the Service Releases for 2012.2 and 2012.1 that will come a short while after 2013.1 ships.Cheers,Borislav
Hi,
I've logged this as a bug into our internal system. Its number is 134207.
A case is created on your behalf with number: CAS-111294-M7V8F2.
You can track the progress of the bug by selecting the "Development Issues" tab when viewing that case on our web site.
Best regards,Martin PavlovInfragistics, Inc.
hi,
it's a simple grid with showNullConditions filtering option. For example:
var data = [{ "Name": "Firstname"}, { "Name": "name"}, { "Name": "testName"}, { "Name": "lastname"}];
$.ig.loader({ scriptPath: "http://cdn-na.infragistics.com/jquery/20122/latest/js/", cssPath: "http://cdn-na.infragistics.com/jquery/20122/latest/css/", resources: "igGrid.Filtering" }); $.ig.loader(function () { $("#grid1").igGrid({ autoGenerateColumns: false, columns: [ { headerText: "Product Name", key: "Name", dataType: "string" } ], height: "400px", dataSource: data, features: [ { name: "Filtering", type: "local", showNullConditions: true } ] }); });
So it comes to situation that filter name is "Null", but it works as "contains".