onBeforeSplit

fires before merged cells are split

void onBeforeSplit(number row,number column,array value);
rownumberthe number of the row that the span starts with
columnnumberthe number of the column that the span starts with
valuearraythe array with values of the deleted span

Example

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

Details

return false to block cell's splitting

See also
Back to top
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.