ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: interloper10 on January 07, 2016, 10:16:05 pm
-
I have a (working) grid with multiple select type column filters. The filtermodel mode is AND.
Is it possible to override the active change listener to clear the filter values on the other (non-active) filters?
Here is a suggestion: have another filterModel mode of 'CLEAR' or 'RESET' (something like this) that would clear out the other filters prior to applying the active filter.
-
That is possible by implementing a custom listener and calling filter method directly with 'oper' parameter as 'replace'
Example to implement a custom change listener: http://paramquery.com/pro/demos/filter_date
API for filter method: http://paramquery.com/pro/api#method-filter
-
In the API doc (V3), dataIndx should be data > condition
I following you, but struggling with the examples.
I've tried to replace the filter and then call flex method. I have array/TEXT data and columns defined like this:
{ title: "Group Type", dataType: "string", dataIndx: 0,
filter: {
type: 'select',
condition: 'equal',
value: 'Total',
valueIndx: 0,
labelIndx: 0,
on: true,
prepend: { '': ' Select' },
listeners: ['change']
}
},
{ title: "Group Value", dataType: "string", dataIndx: 1,
filter: {
type: 'select',
condition: 'equal',
value: 'Total',
valueIndx: 1,
labelIndx: 1,
groupIndx: 0,
on: true,
prepend: { '': ' Select' },
listeners: [{ 'change': function (evt, ui) {
$( ".selector" ).pqGrid('filter', {
oper: 'replace', data: [{ dataIndx: 0, condition: 'equal', value: null }]
});
$( ".selector" ).pqGrid( "flex", {
dataIndx: [ 0, 1 ]
} );
}}]
}
}
Am I on the right path here? - appreciate the help.
-
listener would be as below where grid is javascript widget instance of pqGrid.
listeners: [{ 'change': function (evt, ui) {
var CM = grid.getColModel();
for(var i=0, len = CM.length; i < len; i++){
var column = CM[i];
if(column.filter){
column.filter.value = null;
column.filter.cache = null;
}
}
setTimeout(function(){
grid.refreshHeader();
},0);
grid.filter({
oper: "replace",
data: [ui]
})
}
}]
-
Perfect - thank you! :)