In v5.1.0 there seem to be possible to filter on empty values if you use prepend: { '': ''},?
Problem is then filter heading says 1 of 5 but there is only 4 to choose from.
You still need custom condition? How is implemented when using range?
{title:"test", width:10, dataIndx: "abc", hidden: true,
filter: {
type: 'select',
attr: "multiple",
condition: 'range',
valueIndx: "abc",
labelIndx: "abc",
value: [],
style:'height:30px;',
prepend: { '': ''},
listeners: ['change'],
init: function(ui) {
ui.$editor.pqSelect({ checkbox: true, width: '100%', multiplePlaceholder: 'FILTER', maxDisplay: 0 });
}
}
},