Pivot - responsive width or height

Hi, We want to know if anyone setup the pivot table with responsive width and height? How did you do it?

  • What we mean is when its deployed it inherits the Size from the .js file and not HTML settings

Hi,

Pivot can be rendered as apart of Webix Layout: a row or a col, not only in specified html container:

webix.ui({
    rows:[
         { view: "pivot", ... },
         { template: "another row"}
    ]
});

If you want to initialize Pivot in a specific html container, you can use adjust() method:

http://webix.com/snippet/7853f360

Hi,

Thank you for your help. We will try this now.