Skip to content
This repository was archived by the owner on May 30, 2021. It is now read-only.

Dynamically adding data

Karl edited this page Sep 1, 2017 · 26 revisions

New data can be added at any time with the insert() and import() methods as well as the rows() and columns() API.

Let's say you have the following formatted JSON string to import:

var JSONstring = "[{
    'Heading 1': 'Value 1',
    'Heading 2': 'Value 2',
    'Heading 3': 'Value 3',
    ...
},
{
    'Heading 1': 'Value 4',
    'Heading 2': 'Value 5',
    'Heading 3': 'Value 6',
    ...
}]";

Clone this wiki locally