schemaCatalogs

    Requests the catalogs information.

    Returns

    Object—The deferred object.

    Example

    Open In Dojo
    <script>
    var dataSource = new kendo.data.PivotDataSource({
      type: "xmla",
      transport: {
        read: "https://demos.telerik.com/olap/msmdpump.dll"
      },
      schema: {
        type: "xmla"
      }
    });
    
    dataSource.schemaCatalogs()
        .done(function(catalogs) {
    /* The result can be observed in the DevTools(F12) console of the browser. */
            console.log(catalogs);
        });
    </script>
    In this article