pagination without using divs

Hi

Is it possible to do pagination on a tree table with out using Divs.

All I want is to be able to place pagination under the treetable and not above it.

All examples of webix site show examples with divs

Preetinder

Hi, it is possible to avoid using divs. You can place the treetable and pager in different layout rows:

rows:[
    treetable_config,
    pager_config
]

Here’s the sample http://docs.webix.com/samples/25_pager/03_layout.html

Thanks. It worked a treat…