Can I change table rows?

Hi!

I wonder how to change table rows.

I understand table has “id” and row parameters by reading this page.

but how can I change table rows?
Are there any tips?

Hello Masa!

You must rewrite the json in order to change table rows.

To add the row,
record[‘table’][‘value’].push(row);

To delete the row,
record[‘table’][‘value’].pop();

Hi, Yuzo Arai!

wow it looks easy for me! I’ll try this:)