Thank you Jarry for your answer.
The datagrid filter extension works very well, but due to there is no way to avoid to get a filter cell under every single column title, is not really functional.
The goal is to get a simple filter in a combobox, similar to the Demo example "DataGrid Complex Toolbar" but instead to filter and display "equals", the filter should display "Not equal" , sort of inverted filter.
I have also try this suggested by stworthy, but it did't work. if there is a chance to see an example in
http://jsfiddle.net would be great.
var cc = $('#cc'); // the combogrid object
var opts = cc.combogrid('options');
var values = cc.combogrid('getValues');
var rows = [];
$.map(cc.combogrid('grid').datagrid('getRows'), function(row){
if ($.inArray(row[opts.idField], values) == -1){
rows.push(row);
}
});
console.log(rows)