AttachHeader with commas in the values

Hello,
I’m calling the attachHeader with a string. This is working fine except when I want to place formatted numbers in the header. I want the following numbers in my header: 123.45 345.00 and 1,234.65. So my call would look like: grid.attachHeader(“123.45, 345.00, 1,234.65”);. Because 1,234.65 has a comma in it, the parser wants to add another column. How do I get around this? I’m using version 3.6 pro edition.

Thanks,
Scott

It looks like doing the following works: “1\,234.65”.

gridCustomers.setHeader([“123.45”,“345.00”,“1,234.65”]);