I am having trouble with the column filtering in my table. When I combine values to display as a title in the title column, the built-in column filter is not returning any results when I try to search for something. I'm wondering what I might be doing wrong here and why the column filtering doesn't work for combined values. Can anyone help me with this issue?
title: {
minWidth: 90,
cellClassRules: {
'completedFieldClass': function(params) {
return params.value && params.value.completed;
}
},
cellStyle: getCellStyle,
cellRenderer: function(params) {
var prqId = params.data.id;
var type = (!!params.data.type) ? params.data.type.value + ': ' : '';
var desc = (!!params.data.id) ? '- '+params.data.description : '';
if(!!params.data.access){
var concatTitle = '<a>';
concatTitle = concatTitle + '<strong>'+type+'</strong><span>'+params.value.value+'</span>';
concatTitle = concatTitle + '<span>'+desc+'</span></a>';
return concatTitle;
} else{
var concatTitle = '<span class="notprint">';
concatTitle = concatTitle + '<strong>'+type+'</strong><span>'+params.value.value+'</span>';
concatTitle = concatTitle + '<span>'+desc+'</span></span>';
return concatTitle;
//return '<span class="notprint">' + modValue + ''+ configDesc +'</span>';
}
},
sortable: false
},
Any suggestions or solutions would be greatly appreciated. Thank you!