I cam across below post on the same topic, but I am not able to figure out how to write that renderer -
I tried adding renderer for the columns when data is numeric -
c.type = ‘numeric’;
c.numericFormat = { pattern: ‘0,0’ }
c.renderer = function(instance, td, row, col, prop, value, cellProperties) {
…
}
but in above renderer, when the value comes its already converted -
e.g.
4,500 inserted value shows up as - 4.5
5,000 inserted value shows up as - 5
is there any way to not apply this auto formatting/underlying value change automatically and keep the value as is.