DevExtreme jQuery - PivotGridDataSource - fields.headerFilter
Type:
JavaScript
- $(function() {
- var pivotGridDataSource = new DevExpress.data.PivotGridDataSource({
- // ...
- fields: [{
- // ...
- allowFiltering: true,
- headerFilter: {
- search: {
- enabled: true,
- // ...
- }
- }
- }]
- });
- $("#pivotGridContainer").dxPivotGrid({
- dataSource: pivotGridDataSource
- });
- });
See Also
- fields[].allowFiltering
- PivotGrid.headerFilter
search
Type:
JavaScript
- $(function() {
- var pivotGridDataSource = new DevExpress.data.PivotGridDataSource({
- // ...
- fields: [{
- // ...
- headerFilter: {
- // ...
- search: {
- editorOptions: {
- placeholder: 'Search value',
- mode: 'text'
- },
- enabled: true,
- timeout: 600,
- mode: 'equals'
- }
- }
- }]
- });
- $("#pivotGridContainer").dxPivotGrid({
- dataSource: pivotGridDataSource
- });
- });
Feedback