strict

defines whether math calculations should behave similarly to Excel

boolean strict;

Example

webix.ui({
    view:"spreadsheet",
    strict: true,
    ...
});

Details
/// regular math
"1"+0 = 10
"a"+"b" = "ab"
/// if strict: true
"1"+0 = 1
"a"+"b" = #ERROR!
Back to top