How do I replace the values partially in a cell?
The grid data I get goes like this:
var myCells = [
["MSFT","Microsoft Corporation", "#1329707339#02/19/12 20:08 PM"],
["ORCL", "Oracle Corporation", "#1329449106#02/16/12 20:25 PM"]
];
I need to fix the data in the date column by getting rid of the digits between the hashes.
"#1329449106#02/16/12 20:25 PM" should be just "02/16/12 20:25 PM"
I can't change it in the incoming data, so I need to correct it as the grid is displayed. Any suggestions? Is there a replace function that I can use? I tried the setCellFormat, but I'm probably not doing it correctly. Please help.
var myCells = [
["MSFT","Microsoft Corporation", "#1329707339#02/19/12 20:08 PM"],
["ORCL", "Oracle Corporation", "#1329449106#02/16/12 20:25 PM"]
];
I need to fix the data in the date column by getting rid of the digits between the hashes.
"#1329449106#02/16/12 20:25 PM" should be just "02/16/12 20:25 PM"
I can't change it in the incoming data, so I need to correct it as the grid is displayed. Any suggestions? Is there a replace function that I can use? I tried the setCellFormat, but I'm probably not doing it correctly. Please help.
May 4,