onBeforeSplit

fires before merged cells are split

boolean onBeforeSplit(number row,number column,array value, [string page] );
row
numberthe number of the row that the span starts with column
numberthe number of the column that the span starts with value
arraythe array with values of the deleted span pagestringthe name of the sheet
booleanreturning false will prevent splitting of merged cells

Example

$$("ssheet").attachEvent("onBeforeSplit", function(row, column, value, page){
    // some code here
    return true;
});

Details

return false to block cells' splitting

See also
  • API
  • Back to top
    Join Our Forum
    We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.
    If you have not checked yet, be sure to visit site of our main product Webix web development library and page of javascript spreadsheet library product.