In version 2015.2, how can I disable the tooltip for igCombo?
You are right that currently our Grid does not have editor providers for the filtering feature.
In order to overcome this issue, you should set forth parameter to true like this:
myGrid.igGridFiltering("filter", newExpressions, true, true);
Online sample:
http://jsfiddle.net/1k1t2yh1/show/
I need ability to filter with multiple selection. My requirement does not need editing capability. Your suggested solution does not fulfill my requirement. I use the sample you suggested and turn on the filtering feature, the filtering row just contains textEditor.
Hello,
The approach that you perform in order to show and use the igCombo is not correct, because the combo is 'over' the textEditor which is below (the filtering input for City). I saw that you append div html element and after that wrap instance of a combo, and this practice is not recommended at all.
My suggestion is to use the build in Combo editor, which provide the full igCombo capabilities, because it is igCombo, and you can use it to fulfill your requirements.
Online sample you can find below:
http://www.igniteui.com/combo/grid-with-combo-editor
I attached a sample script for my issue. Every time I made a selection in the City, an instance of tooltip would displayed.
Thank you for contacting us!
I am not sure what is your combo configuration and if you are using different widget for validation, like out igValidator widget, so I will tell you the two ways that you can use for enabling/disabling the validation (tooltip).
You can set combo validationOptions.required to false:
$('#combo2').igCombo({ dataSource: data, textKey: 'Name', valueKey: "ID", validatorOptions: { required: true }});
Or remove the combo selector from fields collection:
$('#validationForm').igValidator({ required: true, onsubmit: true, successMessage: "Valid", fields: [ { selector: "#combo2", onchange: true, lengthRange: [2] } ]});
Looking forward to hearing from you.