New to Kendo UI for jQueryStart a free 30-day trial

Transport

configuration

The configuration used to load data items and discover schema information.

transport

Object
<script>
var dataSource = new kendo.data.PivotDataSourceV2({
  type: "xmla",
  transport: {
    connection: {
      catalog: "Adventure Works DW 2008R2",
      cube: "Adventure Works"
    },
    read: "https://demos.telerik.com/service/v2/olap/msmdpump.dll",
    discover: "https://demos.telerik.com/service/v2/olap/msmdpump.dll"
  }
});
</script>

The configuration that is used for setting the connection options.

<script>
var dataSource = new kendo.data.PivotDataSourceV2({
  type: "xmla",
  transport: {
    connection: {
      catalog: "Adventure Works DW 2008R2",
      cube: "Adventure Works"
    },
    read: "https://demos.telerik.com/service/v2/olap/msmdpump.dll"
  }
});
</script>

transport.discover

Object|String|Function

The configuration which is used when the data source discovers the schema information about the current cube.

  • If the value of transport.discover is a string, the data source uses this string as the URL of the remote service.
<script>
var dataSource = new kendo.data.PivotDataSourceV2({
  type: "xmla",
  transport: {
    connection: {
        catalog: "Adventure Works DW 2008R2",
        cube: "Adventure Works"
    },
    read: "https://demos.telerik.com/service/v2/olap/msmdpump.dll"
  }
});
dataSource.discover({ command: "schemaCatalogs" });
</script>