I am using JqxGrid inside Angular 5, i have some fields in grid which are numbers, and i want to format them with number pipe of angular. but the problem is that jqxGrid is not considering pipe as angular feature and printing it as it is. here is how i am trying to achieve this using cell renderer
formatNumber = (row, columnfield, value, defaulthtml, columnproperties,rowdata) =>
{
return '<span style="margin: 4px; float: ' + columnproperties.cellsalign + ';">${{' + value + ' | number }}</span>';
};
for example if value is 123456, i am getting ${{123456 |number}} what i want to get is $123,456. i have defined my columns and source in component.ts file.