Thanks.
Using:
{ title: 'test', width: 130, dataIndx: 'test', dataType: 'float', hidden: false, filter: { crules: [{condition: 'between' }] },
format: function(val) { return pq.formatNumber(val * 100, '# ###') + '%'; },
deFormat: function (val) { return (pq.deFormatNumber(val.split('%')[0], '# ###') / 100); }
},
On loading the grid I get '0%' inserted in both filter fields.
I have no empty fields in column, and no errors reported.
Filter works fine when using it...but when sorting the column % sign is once again inserted.
See that its the same behaviour in your example...is that by design?