You can hide them by adding the css command:
.rf-edt-flt-c { display:none; }
In addition, the input fields will be deleted when the filter/filterattribute
The third way is to remove them using javascript using the onready-attribute extended data tables
onready="$('.rf-edt-flt-c', this).each(
function(n){
this.parentNode.removeChild(this);
});"
Hope this helps ...
L ray source
share