Is it possible to have a webix app in a scrollable window.
As in this example GitHub - webix-hub/demo-contacts-app: Contacts App
I would like to have the entire browser content scrollable, including the toolbar, i.e. toolbar not fixed at the top.
Again, you can use the scrollview as follows. In the list and the template:
// autoheight:true will disable scroll and
// adjust list to the size of data
var list = {
view:"list", id:"list",
autoheight:true,
. . .
};
// remove scroll:true
var template = { template:"html->item_details", id:"details" };