defines whether math calculations should behave similar to Excel
webix.ui({ view:"spreadsheet", strict: true, ... });
// regular math "1"+0 = 10 "a"+"b" = "ab"
// if `strict: true` is specified "1"+0 = 1 "a"+"b" = #ERROR!