deleteRow

deletes a row by its id

void deleteRow(number|array rowId);
rowIdnumber|arraythe row id(s)

Example

$$("ssheet").deleteRow(rowId);

Related samples

Details

If the rowId parameter isn't specified, the method deletes the selected row. The method can accept an array of ids as a parameter. In this case all the rows from the range will be deleted:

$$("ss").deleteRow([5, 7]); // deletes all the rows from the range
See also
Back to top
If you have not checked yet, be sure to visit site of our main product Webix javascript website framework and page of spreadsheet javascript library product.