$getSize: and the use of "auto"

Hi ,
i’m testing with the Webix v.5.2 and gets this error:

webix.assert(false, "Size is not a number "+this._settings.id);
(webix_debug.js row 5158)

s.width = “auto”;
s.view = “form”;
s.type = “form”;

in the 3.6 version it wasn’t a problem.

Is “auto not allowed” anymore? (or not checked before)

Any ideas how to handle?

thnx

Try to use
s.width = 0;
If the value is 0, it will be auto.

https://docs.webix.com/desktop__dimensions.html#autosizing

Thnx.
that works