strict

defines whether math calculations should behave similar to Excel

boolean strict;

Example

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

Related samples

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