adjust

подстраивает размеры компонента под размеры HTML-контейнера

void adjust();

Example

$$("view").adjust();

Related samples

Details

Метод подстраивает размеры компонента под размеры его контейнера.
Если вы хотите вызвать перерисовку компонента после изменения его ширины или высоты, используйте resize.

<div id='mybox' style='height:300px;width:800px;'></div>
webix.ui({ view:"spreadsheet", id:"myssheet", container:"mybox"});
...
// after the container box is resized
document.getElementById('mybox').style.width = "300px";
document.getElementById('mybox').style.height = "800px";
$$('myssheet').adjust(); // component needs adjusting to the new size
See also
Наверх
If you have not checked yet, be sure to visit site of our main product Webix js framework and page of javascript spreadsheet library product.