(values, rowNumber)
| 335 | } |
| 336 | |
| 337 | addRow(values, rowNumber) { |
| 338 | // Add a row of data, either insert at rowNumber or append |
| 339 | this.cacheState(); |
| 340 | |
| 341 | if (rowNumber === undefined) { |
| 342 | this.table.rows.push(values); |
| 343 | } else { |
| 344 | this.table.rows.splice(rowNumber, 0, values); |
| 345 | } |
| 346 | } |
| 347 | |
| 348 | removeRows(rowIndex, count = 1) { |
| 349 | // Remove a rows of data |
nothing calls this directly
no test coverage detected