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.
Example - set the discover 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/olap/msmdpump.dll"
}
});
dataSource.discover({ command: "schemaCatalogs" });
</script>