Webix Spreadsheet sends as many requests as many rows you have once you change the styles for the whole column

When I have a custom BE URL to save the styles of a spreadsheet once you change them to be able to restore them later on. I did it in the following way:

var spreadsheetSettings = {
    view: 'spreadsheet',
    id: this.spreadsheetId,
    data: this.widget.spreadsheetBean,
    save: {
        data: "spreadsheet/data/" + this.widget.id,
        styles: "spreadsheet/styles/" + this.widget.id,
        spans: "spreadsheet/spans/" + this.widget.id,
        sizes: "spreadsheet/sizes/" + this.widget.id
    }...

When I select the whole column and do some changes I see that spreadsheets sends as many update requests as many rows you have selected. This can lead to thousands requests being send to the server. I am wondering is there a way to send only 1 request containing all the changes and if it’s possible how can I do it?

Hello Uladzislau_K,

If you configure your save method this way, a request is sent on each change in a cell.
To send only one request containing all the changes you can set the save propery this way:

save:"/spreadsheet"

And all other paths to the necessary handlers will be added automaticaly. Additional information you can read here.