Docs
API
  • remotePage

    Boolean

    Enables remote paging.

    If grid has paging, FancyGrid tries to detect type of paging: local or server(remotely).

    If it requires remote paging, than it is better to set it that to avoid wrong behavior.

    Example

    
    new FancyGrid({
      ...
      data: {
        remoteSort: true,
    	remotePage: true,
        proxy: {
          url: '/ajax/load.php'
        }
      },
    

    Default

    
    false