Docs
API
  • barType

    String

    By default paging renders to bbar.
    Paging bar type.
    Possible values: tbar, both, none

    Bar side - tbar

    
    new FancyGrid({
      paging: {
        barType: 'tbar'
      },
      ...
    

    Bar side - both(tbar and bbar)

    
    new FancyGrid({
      paging: {
        barType: 'both'
      },
      ...
    

    Bar side - none(for custom paging)

    
    var grid = new FancyGrid({
      paging: {
        barType: 'none'
      },
      ...
    ...
    
    grid.nextPage();
    ...
    grid.prevPage();
    ...
    grid.setPage(2);
    ...
    grid.firstPage();
    ...
    grid.lastPage();
    ...
    grid.setPageSize(25);
    ...
    grid.getPage();
    ...
    grid.getPageSize();
    

    Default

    
    'tbar'