DevExtreme jQuery - XmlaStore Options
beforeSend
Type:
Function parameters:
options:
The request parameters. When jQuery is used, this object can contain jQuery.ajax()-supported fields.
Object structure:
Name | Type | Description |
---|---|---|
data |
A query string that contains data to be sent to the server. |
|
dataType |
The expected result's data type. |
|
headers |
The request headers. |
|
method |
The request method ("GET", "POST", "PATCH", or "MERGE"). |
|
url |
The request URL. |
|
xhrFields |
Native XMLHttpRequest object properties. |
JavaScript
- var 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
- });
url
Type:
This should be the MSMDPUMP.dll URL and usually has the following format: http://<servername>/OLAP/msmdpump.dll.
JavaScript
- var 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
- });
Feedback