Skip to content

Commit

Permalink
Merge pull request #393 from AayushKarna/patch-1
Browse files Browse the repository at this point in the history
Fix row display issue by replacing `datatable.rows.add(newRows)` with `dataTable.insert({data: newRows})`
  • Loading branch information
johanneswilm authored Oct 7, 2024
2 parents fd1542d + 1fe5cf3 commit a8dffa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/documentation/Dynamically-adding-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ let newRows = [
...
];

datatable.rows.add(newRows);
datatable.insert({ data: newRows });
```
---

Expand Down

0 comments on commit a8dffa9

Please sign in to comment.