Docs
API
  • stateful

    Boolean|Object

    Enables memorizing of grid params states like: sorting, filtering, paging, column sizes.

    To desable state action needs to choose from list and set false

    State actions

    filter

    boolean

    Filter action.

    true

    sort

    boolean

    Sort action.

    true

    columnresize

    boolean

    Column resize action.

    true

    columndrag

    boolean

    Column drag action.

    true

    changepage

    boolean

    Change page action.

    true

    columnhide

    boolean

    Column hide/show action.

    true

    resize

    boolean

    Component resize action.

    true

    Example: Enables state

    
    stateful: true
    

    Example: Disable storing state filter action

    
    stateful: {
      filter: false
    }
    

    Default

    
    false