Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
425
Empty Measure Group Combo
posted

Hi all,

i am trying to use IgniteUI Pivot Grid trial version with my SSAS Cube (SQL Server 2014 BI edition).

I made the following updates to your 'binding-to-xmla-data-source' sample page:

$(function () {
var dataSource = new $.ig.OlapXmlaDataSource({
serverUrl: 'http://ftrprw-ftk/olap/msmdpump.dll'
//catalog: 'Corso',
//cube: 'FBI'
//rows: "[DimClienti].[COD CAN]",
//columns: "[Tempo].[ANNO]",
//measures: "[Measures].[QTA SU],[Measures].[FAT NETTO]"
});

var promise = dataSource.initialize();
promise.fail(function(error) {
console.log(error);
alert(error);
});

promise.done(function(rootMetadataitem) {});

I load the page using IE, it populates Catalog and Cube fields but no rows under MeasureGroup combo.

Have you any ideas ?

Thanks

Marco

Parents
No Data
Reply
  • 16310
    Offline posted

    Hello Marco,

    I have not been able to reproduce this issue using the dataSource from the original sample. After selecting a value in the first dropdown the next gets populated and so on , in fact they are working like cascading dropdowns.

    Please let me know if you are using a different dataSource and if you are experiencing the same issue if measures are defined in advance like //measures: "[Measures].[QTA SU],[Measures].[FAT NETTO]"

Children