ig.OlapTableViewHeaderCell

ig.OlapTableViewHeaderCell_image
表示されるヘッダー セルのコンテンツおよび $.ig.AxisMember オブジェクトに関連する方法についての情報を提供します。

コード サンプル

<!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();
            
                var viewSettings = {
                    isParentInFrontForColumns: true,
                    isParentInFrontForRows: true,
                    compactRowHeaders: true,
                    compactColumnHeaders: false
                };
            
                var hasColumns = dataSource.columnAxis().length > 0;
                var hasRows = dataSource.rowAxis().length > 0;

                // create and initialize the table view
                var tableView = new $.ig.OlapTableView(result, hasColumns, hasRows, viewSettings);
                tableView.initialize();
            
                // obtain layout information about result's row and column headers and its data cells
                var columnHeaders = this._tableView.columnHeaders();
                var rowHeaders = this._tableView.rowHeaders();
                var resultCells = tableView.resultCells();
            });
        });            
    </script>
</head>
<body>
</body>
</html>    
    

関連トピック

依存関係

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

    .axisName( );
    返却型:
    string
    返却型の説明:
    このヘッダー セルが関連付ける軸の名前。

    このヘッダー セルが関連付ける軸の名前を返します。

  • caption

    .caption( );
    返却型:
    string
    返却型の説明:
    ヘッダー セルのキャプション。

    ヘッダー セルのキャプションを返します。

  • columnIndex

    .columnIndex( );
    返却型:
    number
    返却型の説明:
    ヘッダー セルの列インデックス。

    ヘッダー セルの列インデックスを返します。

  • columnSpan

    .columnSpan( );
    返却型:
    number
    返却型の説明:
    ヘッダー セルの列スパン。

    ヘッダー セルの列スパンを返します。

  • isExpanable

    .isExpanable( );
    返却型:
    bool
    返却型の説明:
    ヘッダー セルを展開できる場合 True、そうでない場合は False。

    ヘッダー セルを展開できるかどうかを示します。

  • isExpanded

    .isExpanded( );
    返却型:
    bool
    返却型の説明:
    ヘッダー セルが展開されている場合 True、そうでない場合は False。

    ヘッダー セルの展開状態を返します。

  • memberIndex

    .memberIndex( );
    返却型:
    number
    返却型の説明:
    タプルの軸メンバーのインデックス。

    このヘッダー セルが関連付けるタプルの軸メンバーのインデックスを返します。

  • rowIndex

    .rowIndex( );
    返却型:
    number
    返却型の説明:
    ヘッダー セルの行インデックス。

    ヘッダー セルの行インデックスを返します。

  • rowSpan

    .rowSpan( );
    返却型:
    number
    返却型の説明:
    ヘッダー セルの行スパン。

    ヘッダー セルの行スパンを返します。

  • tupleIndex

    .tupleIndex( );
    返却型:
    number
    返却型の説明:
    軸のタプルのインデックス。

    このヘッダー セルが関連付ける軸のタプルのインデックスを返します。

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