The Advanced Filtering Plugin for RevoGrid extends the gridβs capabilities by introducing powerful filtering options, making data management more efficient and flexible. This plugin includes new filter types, such as slider and selection, which provide intuitive ways for users to interact with and refine data views.
Custom Filter Types: Enables the use of slider and selection filters, allowing users to quickly narrow down data based on specific criteria.
Flexible and Extensible: This plugin demonstrates the potential for creating custom plugins, encouraging developers to expand the gridβs functionality further.
Automatic Theme Support: The plugin adapts to light or dark themes based on user settings.
Filter Selection Options
sortDirection: The default sort direction, can be βascβ or βdescβ or βnoneβ
selectionTitle: The title of the selection filter
sliderTitle: The title of the slider filter
1
grid.filter = {
2
localization: {
3
captions: {
4
selectionTitle:'Selection',
5
sliderTitle:'Slider',
6
},
7
},
8
selection: {
9
sortDirection:'asc', // default sort direction, can be 'asc' or 'desc' or 'none'
sortDirection:'asc', // default sort direction, can be 'asc' or 'desc' or 'none'
18
},
19
};
Customization and Extensibility
This plugin highlights the extensibility of RevoGridβs plugin system, showcasing how developers can build and integrate advanced features tailored to specific needs. The flexibility of RevoGrid plugins enables comprehensive data manipulation and display control, making it an ideal choice for complex data-driven applications.
For a deeper dive into plugin development, refer to the RevoGrid Plugin Documentation.