I have a json response like the following:
And I am trying to access the INSERT_ID value.HTML Code:{"DATASET":1,"ROWS":[{"INSERT_ID":22}],"STARTROW":1.0,"ENDROW":50.0}
This does not work:
Any advice would be greatly appreciated.HTML Code:var insert_id = Ext.util.JSON.decode(resp.responseText).INSERT_ID;
Thank you.