How can i adjust/ resize the datatable so it would fit the current browser window size ?
Right now when i resize the window the datatables height stays the same. Have tried " webix.event(window, ‘resize’, … " , but it doesn’t do anything. ( Mby i have falsely used it )
firstly remove height and width attributes from table config.
then either remove container attribute or set appropriate style to the container. https://webix.com/snippet/b9546441
if you set container fixed size then table will take it.
if you set table fixed size then container will take it (in case of “div” height will be taken).
not very clear what you want to get.