Add numericFormat for thousands separator when used custom renderer

Tags: #<Tag:0x00007f8b1d909ed0>
columns:[ 
{
data: 'penalty_due',
type: 'numeric',
width: 110,
renderer: function(hotInstance, td, row, col, prop, value, cellProperties) {
if(cellProperties.isSubtotal){
td.style.background = '#f0f0f0';
td.style.fontWeight="bold";
td.style.color="black";
}
td.innerHTML = value;
Handsontable.renderers.NumericRenderer.apply(this, arguments);
return td;
}
]

Here we are trying to implement thousands separator for numericFormat when using custom renderer. Please let me know if need more info.

Appreciate your help!!

Hey Rohit,

Please check the email.

I’ve sent you a message yesterday.