Numerics displayed in grid multiplied by 1,000
I have a simple grid that is being populated through a visual fox pro application. The grid is created via:
oPartGrid = new HDS.Grid("partGrid", 500, 120, "SSSSNNNS", [60, 90, 30, 120, 60, 30, 60, 50], ["MfgID", "Part Number", "GIC", "Description", "Price", "Qty", "Ext Prc", "Stock"]);
oPartGrid.setSelectionMode("single-row");
The numeric fields (price, qty, ext prc) all appear in the debugger as properly passed to the javascript (e.g. 318, 1, 318) but they appear in the grid as 318,000 1,000 and 318,000
Any suggestions?
Thanks
Stan
oPartGrid = new HDS.Grid("partGrid", 500, 120, "SSSSNNNS", [60, 90, 30, 120, 60, 30, 60, 50], ["MfgID", "Part Number", "GIC", "Description", "Price", "Qty", "Ext Prc", "Stock"]);
oPartGrid.setSelectionMode("single-row");
The numeric fields (price, qty, ext prc) all appear in the debugger as properly passed to the javascript (e.g. 318, 1, 318) but they appear in the grid as 318,000 1,000 and 318,000
Any suggestions?
Thanks
Stan
Stan
October 2,