onBeforeValueChange

срабатывает перед изменением значения в ячейке

void onBeforeValueChange(number row,number column,string newValue,string oldValue);
rownumberid ряда
columnnumberid колонки
newValuestringновое значение
oldValuestringстарое значение

Example

$$("ssheet").attachEvent("onBeforeValueChange",function(row,column,newValue,oldValue){
    // ваш обработчик
    return true;
});

Наверх
If you have not checked yet, be sure to visit site of our main product Webix mvc library and page of spreadsheet javascript library product.