ig.OlapResult

ig.OlapResult_image
データ ソースの現在の状態を評価した結果を表します。

コード サンプル

<!doctype html>
<html>
<head>
    <!-- jQuery Core -->
    <script src="js/jquery.js" type="text/javascript"></script>
    <!-- jQuery UI -->
    <script src="js/jquery-ui.js" type="text/javascript"></script>
    <!-- Infragistics Combined Scripts -->
    <script src="js/infragistics.core.js" type="text/javascript"></script>
    <script src="js/infragistics.lob.js" type="text/javascript"></script>
    <script type="text/javascript">
        $.support.cors = true;                
        $(function () {
            var dataSource = new $.ig.OlapXmlaDataSource({
                serverUrl: "http://sampledata.infragistics.com/olap/msmdpump.dll",
                catalog: "Adventure Works DW Standard Edition",
                cube: "Adventure Works",
                rows: "[Date].[Calendar]",
                measures: "[Measures].[Customer Count], [Measures].[Internet Order Count]"
            });
			
            dataSource.initialize().done(function(metadataTree) {
                // the result of the pre-loaded rows, columns, filters and measures is evaluated as part of initialization 
                var result = dataSource.result();
            });
        });
    </script>
</head>
<body>
</body>
</html>
    

関連トピック

依存関係

jquery-1.9.1.js
infragistics.util.js
このコントロールにオプションはありません。
このコントロールにイベントはありません。
  • axes

    .axes( value:object );
    返却型:
    array
    返却型の説明:
    $.ig.OlapResultAxis オブジェクトの配列。

    この結果に基づく $.ig.OlapResultAxis オブジェクトの配列を返します。

    • value
    • タイプ:object
  • cells

    .cells( value:object );
    返却型:
    array
    返却型の説明:
    $.ig.OlapResultCell オブジェクトの配列。

    結果データを含む $.ig.OlapResultCell オブジェクトの配列を返します。

    • value
    • タイプ:object
  • isEmpty

    .isEmpty( value:object );
    返却型:
    bool
    返却型の説明:
    結果オブジェクトがデータを含むかどうかを示す値。

    結果オブジェクトがデータを含むかどうかを示す値を返します。

    • value
    • タイプ:object

Copyright © 1996 - 2024 Infragistics, Inc. All rights reserved.