Parsing CSV only fills the first column

Hi,

I’m trying to fill a grid that has 2 columns with a CSV string. Here’s the code:

The grid is created properly and the first column is populated correctly, but the second column is left blank. Am I structuring the CSV string wrong? How can I fix this?

Try to add

mygrid.enableCSVAutoID(true);

before

mygrid.parse("92037,92037\n92038,92038\n92092,92092\n92093,92093\n92117,92117\n92121,92121", 'csv');