ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: jplevene on July 20, 2025, 11:19:55 pm
-
In my grid, some cells have filters, others don't. In one of the columns that does NOT have a filter (so the filter cell is blank), I want to insert my own HTML element. How do I do this?
-
non filter cells in filter row are not configurable, however following workaround can be used:
filter:{
crules:[{condition:'equal'}],//use some condition.
init: function(ui){
ui.$cell.html("Empty");//insert custom html.
return true;
}
}
-
Should have mentioned that I already did this. Just wondered if there was another way. Thanks