Currency format not working in 2.0.2 for JS Array
If I do the following:
// define data formats
var str = new AW.Formats.String;
var num = new AW.Formats.Number;
var cur = new AW.Formats.Number;
cur.setTextFormat("$ #,###.##");
obj.setCellFormat([str, str, num, cur, num]);
in the example code for the XML dataset it works as expected but if you use the same code with the JS array it does not...
// define data formats
var str = new AW.Formats.String;
var num = new AW.Formats.Number;
var cur = new AW.Formats.Number;
cur.setTextFormat("$ #,###.##");
obj.setCellFormat([str, str, num, cur, num]);
in the example code for the XML dataset it works as expected but if you use the same code with the JS array it does not...
Mark Elrod
July 12,