Docs
API
  • remoteFilter

    Boolean

    Enables remote filtering.

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

    Priority is for local filtering.

    Example

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

    Default

    
    false