Query Builder overlap default scrollbar

How to fix overlap query builder using default scroll

Hi @finzaiko ,
As is the case with every other Jet-based widget, it is possible to fully customize the Query widget according to the required specifications. It is possible to redefine any inner view by using the override method.
In your case, if you use default scroll you need to change the height of the toolbar - Code Snippet . In this case, the button’s height ( “Add filter”) changes, because of the toolbar adjusts to the height of the tallest element, to avoid this use the following technique - Code Snippet

The last thing I would point out, you can try using custom scroll to avoid additional customization:

  // optional custom scroll 
  if (webix.env.touch) webix.ui.fullScreen();
  else if (webix.env.scrollSize) webix.CustomScroll.init();

Here is an example:
https://snippet.webix.com/njwafadh

Great !
Thanks @annazankevich