Rows
Add Rows
let table = new eb.data.DataTable([
{product: "apples", order: "PRN001", quantity: 10},
{product: "oranges", order: "PRN002", quantity: 15},
{product: "apples", order: "PRN003", quantity: 20}
]);
let row = table.newRow();
row["product"] = "pears";
row["quantity"] = 30;
table.insert(row);let rows = [];
...
table.insert(rows, true);Update Rows
Delete Rows
Last updated
Was this helpful?