This project is deprecated. Use DevExtreme Vue instead.

Vue Grid - Plugin Overview

Plugins are components that implement particular Grid features. They should be defined within the DxGrid component.

Plugin Order

The Grid plugins adhere to the data piping principle. That is, plugins process Grid data in the same order they are defined in the Grid.

Plugins implementing an interface should be linked before plugins that use it. For example, a data processing plugin is based on some state and should follow the appropriate state plugin. Some visualization plugins extend the DxTable’s functionality and should follow it in the code.

NOTE: Refer to the plugin’s reference for information on its dependencies.

Data Processing Plugins

The data processing plugins’ order is also important because they transform data in the same order they appear. For example, if the DxIntegratedPaging plugin precedes the DxIntegratedSelection, the ‘Select All’ checkbox selects only the current page’s rows and swapping them around allow selecting rows on all pages. See this rule in action in the following demo:

Plugin Types

Plugins can be divided into four groups:

  • State Management plugins control a part of the Grid’s state internally or provide properties for external state management.
  • Data Processing plugins transform data passed to the Grid component before rendering.
  • UI plugins render the transformed data using the current state and configuration. UI plugins can also invoke actions that state management plugins provide to change the Grid’s state. In some cases, UI plugins can control a part of the Grid state (instead of State Management plugins).
  • Core plugins are the base building blocks for the first three groups. These plugins can also be used separately in certain scenarios.

Note that the plugins are composable and can be nested into each other.

Refer to the Reference to see the complete plugin list.

UI Plugins

The Grid’s UI plugins use special components to render the UI. You can implement your component suite or use the predefined one: