Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ export class AppComponent {
{
dataField: '[Ship Date].[Calendar Year]',
area: 'filter',
filterValues: ['[Ship Date].[Calendar Year].&[2004]'],
filterValues: ['[Ship Date].[Calendar Year].&[2024]'],
},
],
store: {
type: 'xmla',
url: 'https://demos.devexpress.com/Services/OLAP/msmdpump.dll',
catalog: 'Adventure Works DW Standard Edition',
catalog: 'Adventure Works DW Standard Edition 2026',
cube: 'Adventure Works',
},
});
Expand Down
4 changes: 2 additions & 2 deletions apps/demos/Demos/PivotGrid/Filtering/React/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ const dataSource = new PivotGridDataSource({
{
dataField: '[Ship Date].[Calendar Year]',
area: 'filter',
filterValues: ['[Ship Date].[Calendar Year].&[2004]'],
filterValues: ['[Ship Date].[Calendar Year].&[2024]'],
},
],
store: new XmlaStore({
url: 'https://demos.devexpress.com/Services/OLAP/msmdpump.dll',
catalog: 'Adventure Works DW Standard Edition',
catalog: 'Adventure Works DW Standard Edition 2026',
cube: 'Adventure Works',
}),
});
Expand Down
4 changes: 2 additions & 2 deletions apps/demos/Demos/PivotGrid/Filtering/ReactJs/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ const dataSource = new PivotGridDataSource({
{
dataField: '[Ship Date].[Calendar Year]',
area: 'filter',
filterValues: ['[Ship Date].[Calendar Year].&[2004]'],
filterValues: ['[Ship Date].[Calendar Year].&[2024]'],
},
],
store: new XmlaStore({
url: 'https://demos.devexpress.com/Services/OLAP/msmdpump.dll',
catalog: 'Adventure Works DW Standard Edition',
catalog: 'Adventure Works DW Standard Edition 2026',
cube: 'Adventure Works',
}),
});
Expand Down
4 changes: 2 additions & 2 deletions apps/demos/Demos/PivotGrid/Filtering/Vue/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ const dataSource = new PivotGridDataSource({
{
dataField: '[Ship Date].[Calendar Year]',
area: 'filter',
filterValues: ['[Ship Date].[Calendar Year].&[2004]'],
filterValues: ['[Ship Date].[Calendar Year].&[2024]'],
},
],
store: new XmlaStore({
url: 'https://demos.devexpress.com/Services/OLAP/msmdpump.dll',
catalog: 'Adventure Works DW Standard Edition',
catalog: 'Adventure Works DW Standard Edition 2026',
cube: 'Adventure Works',
}),
});
Expand Down
4 changes: 2 additions & 2 deletions apps/demos/Demos/PivotGrid/Filtering/jQuery/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ $(() => {
{
dataField: '[Ship Date].[Calendar Year]',
area: 'filter',
filterValues: ['[Ship Date].[Calendar Year].&[2004]'],
filterValues: ['[Ship Date].[Calendar Year].&[2024]'],
},
],
store: {
type: 'xmla',
url: 'https://demos.devexpress.com/Services/OLAP/msmdpump.dll',
catalog: 'Adventure Works DW Standard Edition',
catalog: 'Adventure Works DW Standard Edition 2026',
cube: 'Adventure Works',
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class AppComponent {
store: {
type: 'xmla',
url: 'https://demos.devexpress.com/Services/OLAP/msmdpump.dll',
catalog: 'Adventure Works DW Standard Edition',
catalog: 'Adventure Works DW Standard Edition 2026',
cube: 'Adventure Works',
},
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const dataSource = new PivotGridDataSource({
store: {
type: 'xmla',
url: 'https://demos.devexpress.com/Services/OLAP/msmdpump.dll',
catalog: 'Adventure Works DW Standard Edition',
catalog: 'Adventure Works DW Standard Edition 2026',
cube: 'Adventure Works',
},
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const dataSource = new PivotGridDataSource({
store: {
type: 'xmla',
url: 'https://demos.devexpress.com/Services/OLAP/msmdpump.dll',
catalog: 'Adventure Works DW Standard Edition',
catalog: 'Adventure Works DW Standard Edition 2026',
cube: 'Adventure Works',
},
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const dataSource: Record<string, any> = {
store: {
type: 'xmla',
url: 'https://demos.devexpress.com/Services/OLAP/msmdpump.dll',
catalog: 'Adventure Works DW Standard Edition',
catalog: 'Adventure Works DW Standard Edition 2026',
cube: 'Adventure Works',
},
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ $(() => {
store: {
type: 'xmla',
url: 'https://demos.devexpress.com/Services/OLAP/msmdpump.dll',
catalog: 'Adventure Works DW Standard Edition',
catalog: 'Adventure Works DW Standard Edition 2026',
cube: 'Adventure Works',
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export class AppComponent {
store: {
type: 'xmla',
url: 'https://demos.devexpress.com/Services/OLAP/msmdpump.dll',
catalog: 'Adventure Works DW Standard Edition',
catalog: 'Adventure Works DW Standard Edition 2026',
cube: 'Adventure Works',
},
};
Expand Down
2 changes: 1 addition & 1 deletion apps/demos/Demos/PivotGrid/OLAPDataSource/React/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const dataSource = new PivotGridDataSource({
],
store: new XmlaStore({
url: 'https://demos.devexpress.com/Services/OLAP/msmdpump.dll',
catalog: 'Adventure Works DW Standard Edition',
catalog: 'Adventure Works DW Standard Edition 2026',
cube: 'Adventure Works',
}),
});
Expand Down
2 changes: 1 addition & 1 deletion apps/demos/Demos/PivotGrid/OLAPDataSource/ReactJs/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const dataSource = new PivotGridDataSource({
],
store: new XmlaStore({
url: 'https://demos.devexpress.com/Services/OLAP/msmdpump.dll',
catalog: 'Adventure Works DW Standard Edition',
catalog: 'Adventure Works DW Standard Edition 2026',
cube: 'Adventure Works',
}),
});
Expand Down
2 changes: 1 addition & 1 deletion apps/demos/Demos/PivotGrid/OLAPDataSource/Vue/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const dataSource = new PivotGridDataSource({
],
store: new XmlaStore({
url: 'https://demos.devexpress.com/Services/OLAP/msmdpump.dll',
catalog: 'Adventure Works DW Standard Edition',
catalog: 'Adventure Works DW Standard Edition 2026',
cube: 'Adventure Works',
}),
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ $(() => {
store: {
type: 'xmla',
url: 'https://demos.devexpress.com/Services/OLAP/msmdpump.dll',
catalog: 'Adventure Works DW Standard Edition',
catalog: 'Adventure Works DW Standard Edition 2026',
cube: 'Adventure Works',
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class AppComponent {
store: {
type: 'xmla',
url: 'https://demos.devexpress.com/Services/OLAP/msmdpump.dll',
catalog: 'Adventure Works DW Standard Edition',
catalog: 'Adventure Works DW Standard Edition 2026',
cube: 'Adventure Works',
},
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const dataSource = new PivotGridDataSource({
],
store: new XmlaStore({
url: 'https://demos.devexpress.com/Services/OLAP/msmdpump.dll',
catalog: 'Adventure Works DW Standard Edition',
catalog: 'Adventure Works DW Standard Edition 2026',
cube: 'Adventure Works',
}),
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const dataSource = new PivotGridDataSource({
],
store: new XmlaStore({
url: 'https://demos.devexpress.com/Services/OLAP/msmdpump.dll',
catalog: 'Adventure Works DW Standard Edition',
catalog: 'Adventure Works DW Standard Edition 2026',
cube: 'Adventure Works',
}),
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const dataSource = new PivotGridDataSource({
],
store: new XmlaStore({
url: 'https://demos.devexpress.com/Services/OLAP/msmdpump.dll',
catalog: 'Adventure Works DW Standard Edition',
catalog: 'Adventure Works DW Standard Edition 2026',
Comment thread
mpreyskurantov marked this conversation as resolved.
cube: 'Adventure Works',
}),
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ $(() => {
store: {
type: 'xmla',
url: 'https://demos.devexpress.com/Services/OLAP/msmdpump.dll',
catalog: 'Adventure Works DW Standard Edition',
catalog: 'Adventure Works DW Standard Edition 2026',
cube: 'Adventure Works',
},
},
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading