Handler to post-process the paginated data, and determine which data to actually display. It supports promises. Defaults to [[Handler.defaultDisplayHandler]].
Filter the provided rows, checking if at least a cell contains one of the specified filters. It supports promises. Defaults to [[Handler.defaultFilterHandler]].
Split the rows list to display the requested page index. It supports promises. Defaults to [[Handler.defaultPaginateHandler]].
Sort the given rows depending on a specific column & sort order. It suports promises. Defaults to [[Handler.defaultSortHandler]].
Generated using TypeDoc
This interface exposes methods used to manipulate table data, like filtering, sorting, or paginating. You can implement this interface, or override DefaultHandler's instance's members to customize the behavior of your VueDatatable. Handlers are called in this order: filter, sort, paginate, display.
Ajax table (with handler customization)