I have a simple listgrid with field of type string. I have a formatCellValue on the field. But I cannot search the field on value returned from formatCellValue. Eg.,
So after the field is rendered, I want to search on the formatted value which is "ABCD".
But I cannot do that. I guess I have to reindex the field or something.
How do I get this behavior?
Code:
formatCellValue : function(value, record, rowNum) { //value is string of number like "1234" return "ABCD"; }
But I cannot do that. I guess I have to reindex the field or something.
How do I get this behavior?
Comment