loadStyles

defines whether styles are loaded while importing Excel files

boolean loadStyles;

Example

webix.ui({
    view:"spreadsheet",
    toolbar:"full",
    loadStyles:false,
    data:spreadsheet_data
});


Default value:

true

Related samples

Details

Use the loadStyles: false setting to ignore loading styles during the import of Excel files to increase the performance of the widget.

See also
Back to top