Docs
API
  • remoteSort

    Boolean

    If grid is sortable, FancyGrid detects will it be sorting locally or by server(remotely).

    Priority is for local sorting.

    Example

    
    new FancyGrid({
      ...
      data: {
        remoteSort: true,
        pageSize: 20,
        proxy: {
          url: 'ajax.php'
        }
      },
      paging: true,
    

    Default

    
    false