5.20232.939
Wijmo API Module wijmo.vue2.grid.filter Wijmo API Module

wijmo.vue2.grid.filter Module

Contains Vue 2 and 3 components for the wijmo.grid.filter module.

Variables

Variables

WjFlexGridFilter

WjFlexGridFilter: any

Vue component for the wijmo.grid.filter.FlexGridFilter class.

The wj-flex-grid-filter component should be contained in a wijmo.vue2.grid.WjFlexGrid component.

The component supports all properties and events of the pure JavaScript wijmo.grid.filter.FlexGridFilter class it represents.

The component includes an initialized event that is raised when the control is initialized after it is added to the page. You can use this event to perform further initialization in addition to setting properties in markup. The signature of the handler function is the same as any other Wijmo event handlers.

The example below shows how to instantiate and initialize a wijmo.grid.filter.FlexGridFilter control with a filter using Vue markup:

<wj-flex-grid
  :items-source="data">
  <wj-flex-grid-filter></wj-flex-grid-filter>
</wj-flex-grid>