Comma(,) in grid header

Is there any way to have text with comma as grid header.


Grid has command which can change default delimeter  - some other char can be set as delimiter so comma can be used in text.



Also in 1.4 next works for me
                       grid.setHeader(“A\,B,C”); // will produce A,B and C columns

.replace(’,’, ‘\,’);
worked for me

You may use the following format of the setHeader() method:
grid.setHeader([“A,B”,“C”]);