Still doesn't seem to be working unless i am missing something? I can't event get into the compare function to debug it. My code is below and as you can see in the attached screenshot it still is showing the data as [Object] [object]
{
title: FI.res.fXRates.CalcConfigTypeLabel, dataType: "string", dataIndx: "FxCalcConfigType", editable: false, align: "left", minWidth: 150,
render: function (ui) {
//Below line returns the value of the type value so that I don't have to do anything to the entity
return ui.rowData['FxCalcConfigType']['Value'];
},
filter: { crules: [{ condition: 'contain' }], listeners: ['keyup'] },
conditions: {
contain: {
compare: function (cellData, val) {
if ((cellData.Value + "").indexOf(val) != -1) {
return true;
}
else {
return false;
}
}
}
}
},