setPlaceholder

fills placeholders in a table with data

void setPlaceholder(object|string placeholder, [number|string value] );
placeholderobject|stringdata properties which can be set as SpreadSheet values
valuenumber|stringvalue of the placeholder, if passed as a string

Example

$$("ssheet").setPlaceholder({value:"France", expense:1366, income:842});

Related samples

Details

If the placeholder is a string, you need to provide the value parameter as well:

$$("ssheet").setPlaceholder("expense", 1366);
See also
Back to top