when using addRow([“this is a test”, “$4,999”,“help”]), if a cell contains a comma ($4,999), even though the cell is quoted, the string is interpreted as 4 cells and not 3. I’ve tried changing the cell delimeter on a grid with -
First parameter of addRow() method must be unique id of the row:
grid.addRow(newId,[“this is a test”, “$4,999”,“help”]);
If you are using correct format of addRow() method and issue still occurs, check what type does 2nd column have. If it “ed” or “ro” provided format should work as expected.
I see the following displayed in my grid object (bracket and quotation marks also) . The “$11,221.97” now spans 2 columns and I lose sight of the email address
I figured out my issue regarding the price column. However, is there any way to format this column ($1,234.55)? I see setNumberFormat is not part of the standard edition.