Documentation

pager

defines paging configuration ( creates a 'ui.pager' object)

object pager;

Example

webix.ui({
    view:"datatable", 
    pager:{
        container:"paging_here",
        size:100,
        group:5
    }
})

See also

Details

The parameter has the following attributes:

  • container - the container where the pager controls will be placed into;
  • size - the number of records per page;
  • group - the number of pages in the pager.
Back to top