1

レポート ページを作成するために、Rally SDK 1.33 とログイン キーを使用しています。Rally の外で Iteration Summary アプリを表示する必要があります。Rally の反復に関する情報を見つけるために、以下を使用してこれを記述しようとしています。

    rallyDataSource.findAll({
          key: "sprints",
          type: "Iteration",
          query: '(EndDate > "today")',
          fetch: true
      }, displayIterationSummary);

displayIterationSummary 関数は次のようになります。

    function displayIterationSummary(results) {
           //access "Start Date" and "End Date" attribute from results.sprints to set up "DaysRemaining" and "TotalDays"
           var panelConfig = {
               title: "Sprint Summary",
               columnKeys: ['Name', 'DaysRemaining', 'TotalDays', 'State'],
               width: 600,
               height: 300

           };
           //take appropriate steps to display the result of this

       }

私の考えでは、これで反復の「終了日」と「開始日」を取得し、それらの属性を使用して「残り日数」と「合計日数」属性を設定できます。関数「displayIterationSummary」内でこれらの属性にアクセスするにはどうすればよいですか? また、Rally 以外で Iteration Summary アプリを作成して表示する方法が他にある場合は、お知らせください。ありがとうございました

4

1 に答える 1

1

以下は、StartDate、EndDate、およびその他のデータを含む繰り返しのテーブルを出力する例です。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!-- Copyright (c) 2010  Rally Software Development Corp.  All rights reserved -->
<html>
<head>
    <title>Table Component Example</title>
    <meta name="Name"    content="App Example: Table of Iterations" />
    <meta name="Version" content="2010.4" />
    <meta name="Vendor"  content="Rally Lab - Nick" />
    <script type="text/javascript" src="https://rally1.rallydev.com/apps/1.33/sdk.js"></script>
    <script type="text/javascript">

        function tableExample() {
            var rallyDataSource = new rally.sdk.data.RallyDataSource('1111', '22222',
            'false', 'true');
            function itemQuery() {
                var queryObject = {
                    key: 'it',
                    type: 'iteration',
                    fetch: 'Name,ObjectID,Project,StartDate,EndDate',
                    query:'(EndDate > Today)'
                };
                rallyDataSource.findAll(queryObject, populateTable);
            }

            function populateTable(results) {

                for (var i=0; i < results.it.length; i++) {
                    results.it[i].Difference = rally.sdk.util.DateTime.getDifference(new Date(rally.sdk.util.DateTime.
                    fromIsoString(results.it[i].EndDate)),new Date(rally.sdk.util.DateTime.
                    fromIsoString(results.it[i].StartDate, "day")));
                }

                var tableDiv = document.getElementById('aDiv');
                if(table) {
                    table.destroy();
                }
                var config = { 
                    columns:
                    [
                        {key: 'Name'},
                        {key: 'ObjectID'},
                        {key: 'StartDate'},
                        {key: 'EndDate'},
                        {key: 'Difference'},
                        {key: 'Project.Name'}
                    ]
                };
                var table = new rally.sdk.ui.Table(config);
                table.addRows(results.it);
                table.display(tableDiv);

            };
            itemQuery();
        }

        rally.addOnLoad(tableExample);
    </script>
</head>
<body>
   <div id="aDiv"></div>
</body>
</html>

Rally の外部でアプリを実行するには (ブラウザーで直接実行するなど)、sdk.js への完全な URL が必要です。

<script type="text/javascript" src="https://rally1.rallydev.com/apps/1.33/sdk.js"></script>

このドキュメントでは、Rally の外部でアプリを実行する方法について説明します。Rally の外部でアプリを実行するために LoginKey を使用する必要はありません。LoginKey 機能により、Rally には読み取り専用ユーザーの資格情報がエンコードされているため、Rally へのログインを求められることなく、カスタム アプリまたは標準レポートを実行できます。

于 2013-07-25T19:49:18.750 に答える