Hi Dean,
For this you can use the ‘format’ option which you can set on the colum. The ‘format’ option applies for number datatypes and can be set to format as a’number; currency; percent; int; double, etc. You set it like this:
columns: [
{ headerText: "Product ID", key: "ProductID", dataType: "number", format: "number" },
{ headerText: "Production Date", key: "ProductionDate", dataType: "date", format: "ddd, MMM-d-yy HH:mm" },
]
You can see more on this by referencing tbe API (help.infragistics.com/jQuery/2013.1/ui.iggrid)–> Options -> Columns -> Format
Let me know if you need any additional assistance.