This section describes properties that configure the XmlaStore.
Specifies a function that customizes the request before it is sent to the server.
Function parameters:The request parameters. When jQuery is used, this object can contain jQuery.ajax()-supported fields.
Object structure:
jQueryvar store = new DevExpress.data.XmlaStore({ url: "https://my-web-srv01/OLAP/msmdpump.dll", catalog: "AdventureWorksDW2012", cube: "Adventure Works", beforeSend: function (e) { e.headers = { "Custom Header": "value" }; } }); var pivotGridDataSource = new DevExpress.data.PivotGridDataSource({ // ... store: store });Angular
import PivotGridDataSource from "devextreme/ui/pivot_grid/data_source"; import XmlaStore from "devextreme/ui/pivot_grid/xmla_store"; // ... export class AppComponent { pivotGridDataSource: PivotGridDataSource; constructor() { this.pivotGridDataSource = new PivotGridDataSource({ // ... store: new XmlaStore({ url: "https://my-web-srv01/OLAP/msmdpump.dll", catalog: "AdventureWorksDW2012", cube: "Adventure Works", beforeSend: (e) => { e.headers = { "Custom Header": "value" } } }) }); } }Vue
<script> import PivotGridDataSource from 'devextreme/ui/pivot_grid/data_source'; import XmlaStore from 'devextreme/ui/pivot_grid/xmla_store'; const pivotGridDataSource = new PivotGridDataSource({ // ... store: new XmlaStore({ url: 'https://my-web-srv01/OLAP/msmdpump.dll', catalog: 'AdventureWorksDW2012', cube: 'Adventure Works', beforeSend: (e) => { e.headers = { 'Custom Header': 'value' } } }) }); export default { // ... data() { return { pivotGridDataSource } } } </script>React
// ... import PivotGridDataSource from 'devextreme/ui/pivot_grid/data_source'; import XmlaStore from 'devextreme/ui/pivot_grid/xmla_store'; const pivotGridDataSource = new PivotGridDataSource({ // ... store: new XmlaStore({ url: 'https://my-web-srv01/OLAP/msmdpump.dll', catalog: 'AdventureWorksDW2012', cube: 'Adventure Works', beforeSend: (e) => { e.headers = { 'Custom Header': 'value' } } }) }); class App extends React.Component { // ... } export default App;
Specifies the database (or initial catalog) that contains the OLAP cube to use.
Specifies the name of the OLAP cube to use from the catalog.
Specifies the OLAP server's URL.
This should be the MSMDPUMP.dll URL and usually has the following format: http://<servername>/OLAP/msmdpump.dll.
jQueryvar store = new DevExpress.data.XmlaStore({ url: "https://my-web-srv01/OLAP/msmdpump.dll", catalog: "AdventureWorksDW2012", cube: "Adventure Works" }); var pivotGridDataSource = new DevExpress.data.PivotGridDataSource({ // ... store: store });Angular
import PivotGridDataSource from "devextreme/ui/pivot_grid/data_source"; import XmlaStore from "devextreme/ui/pivot_grid/xmla_store"; // ... export class AppComponent { pivotGridDataSource: PivotGridDataSource; constructor() { this.pivotGridDataSource = new PivotGridDataSource({ // ... store: new XmlaStore({ url: "https://my-web-srv01/OLAP/msmdpump.dll", catalog: "AdventureWorksDW2012", cube: "Adventure Works" }) }); } }Vue
<script> import PivotGridDataSource from 'devextreme/ui/pivot_grid/data_source'; import XmlaStore from 'devextreme/ui/pivot_grid/xmla_store'; const pivotGridDataSource = new PivotGridDataSource({ // ... store: new XmlaStore({ url: 'https://my-web-srv01/OLAP/msmdpump.dll', catalog: 'AdventureWorksDW2012', cube: 'Adventure Works' }) }); export default { // ... data() { return { pivotGridDataSource } } } </script>React
// ... import PivotGridDataSource from 'devextreme/ui/pivot_grid/data_source'; import XmlaStore from 'devextreme/ui/pivot_grid/xmla_store'; const pivotGridDataSource = new PivotGridDataSource({ // ... store: new XmlaStore({ url: 'https://my-web-srv01/OLAP/msmdpump.dll', catalog: 'AdventureWorksDW2012', cube: 'Adventure Works' }) }); class App extends React.Component { // ... } export default App;Feel free to share topic-related thoughts here.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4