appsdk2

Rally percent done by story count and plan estimate color coding algorithm

若如初见. 提交于 2020-01-16 18:37:50
问题 Related to Progress Bars for Portfolio Items, but now we have the SDK 2.0 Is there a way to see the algorithm for displaying percent done by story count and percent done by story plan estimate? I have an attempt which is close, and works in most cases, but sometimes when I compare it to the actual information in rally, the colors differ. I would like this to be consistent for my app: if (recordData.PercentDoneByStoryPlanEstimate === 1) { //All work has been accepted return App.colorCodes.grey

Does Rally.data.custom.Store have magic uniqueness?

风流意气都作罢 提交于 2020-01-06 03:33:24
问题 I created a custom app (using a Lookback query) that found any items that have been blocked within the last N days. It displays basic story/defect data, along with the duration of the "blockage" and the reason. Sadly, some stories have been blocked more than once. I wanted to show a row in my display grid for each combination of story ID and blocked reason. However, I could not get that to work - it stubbornly showed only one row per id (e.g. US1243). After endless debugging, I found that I

Using Rally WsapiDataStore at a certain date

半城伤御伤魂 提交于 2019-12-24 21:30:26
问题 I want to create a chart of how many tasks are in a given Schedule State during the length of the sprint. Is it possible to call WsapiDataStore on each day? 回答1: What you are looking for is a lookback Snapshot Store , using the Lookback API - this allows you to specify a date or a point in time that you want to query by. A typical use looks like this: Ext.create('Rally.data.lookback.SnapshotStore', { pageSize : 10000, fetch : ['fetch'], filters : [{ property : '__At', value : 'current' },{

Issue with rallygrid column width in rc2

China☆狼群 提交于 2019-12-24 14:30:41
问题 Appsdk2 rc2 seems to be ignoring the width parameter on columnCfgs for rallygrids. For example: xtype: 'rallygrid', columnCfgs: [ {dataIndex: 'ValueScore', width: 40, text:'Value'} ] This renders with a 40 pixel width in rc1, but does not in rc2. Is this a bug, or has the parameter changed? Is there a solution for this? 回答1: This is a bug in the 2.0rc2 release. For now it can be worked around by including flex: null in your column config to override what the grid is doing incorrectly: xtype:

Creating Reports for Test Cases per Iteration in Rally

我怕爱的太早我们不能终老 提交于 2019-12-14 04:09:58
问题 How can I create reports in Rally for Test cases executed based on Iteration? I am not able to create those reports from Reports tab in Rally. 回答1: Test Cases do not have an Iteration field use in a query. Test Cases are scheduled to an iteration indirectly via Test Sets. Here is an app that builds two grids: a grid of stories and a grid of test sets based on a selection in the iteration dropdown. The TestSet grid has a column that lists Test Cases associated with a given Test Set. Copy and

How to build a grid with AppSDK 2 where columns are dropdown values of resolution?

旧巷老猫 提交于 2019-12-13 02:59:48
问题 I want to show a summary of closed defects filtered by iteration with the total count of defects per resolution that looks similar to this: 回答1: Here is an example of a grid that does that. Replace '111' in workspace: '/workspace/1111' with ObjectID of your workspace. This post shows how to find OID of workspace. <!DOCTYPE html> <html> <head> <title>closed defects by iteration</title> <script type="text/javascript" src="/apps/2.0rc1/sdk.js"></script> <script type="text/javascript"> Rally

Rally SDK App using Grid with collapsible tree of children stories

天涯浪子 提交于 2019-12-13 01:23:17
问题 Is it possible, and how would one create a grid-like app that with specified columns but also shows children stories nested under their parent stories the way a Portfolio Hierarchy shows them? As far as I can tell, the Portfolio Hierarchy view doesn't allow additional columns. 回答1: Here is an example of a grid of user stories where the stories are nested under features, and collapsible. The deployment html is in this github repo. Ext.define('CustomApp', { extend: 'Rally.app.App', componentCls

FormattedID is not getting generated for new feature record

喜你入骨 提交于 2019-12-11 07:41:28
问题 In the code below I am trying to copy a existing feature, and for that creating a new object as DeepCopy function is not working for me. But formattedId is not getting generated for new feature object Rally.onReady(function() { var newObj = {}; Ext.define('CustomApp', { extend: 'Rally.app.App', componentCls: 'app', autoScroll: true, launch: function() { Ext.create('Rally.ui.dialog.ChooserDialog', { //model: 'PortfolioItem/Feature', //fetch: ['FormattedID','Name','UserStories'], width: 450,

Is it possible to convert the old Rally Task Board to the new Cardboard

六月ゝ 毕业季﹏ 提交于 2019-12-11 07:37:39
问题 I've been playing around with Rally app customizations for about the past month now and have been impressed with the features that are available. I've been throwing the idea around to develop the legacy "Task Board" app over to the new Cardboard-style app. I've searched on GitHub and all of the documentation for similar endeavours but it always seems like individuals just try to update the legacy app. I would like to know if this is because of existing limitations with the Cardboard

the experimental hierarchical tree for rally

孤街醉人 提交于 2019-12-11 07:25:19
问题 I see that Hierarchical trees are labeled as experimental on the Rally site (https://help.rallydev.com/apps/2.0rc3/doc/#!/api/Rally.ui.grid.TreeGrid). I wanted to build an app using the hierarchical tree and I had a few questions about the features. Is it possible to filter the tree or no? Also can i add up the totals of the tasks for a given userstory (estimate, todo, actual, etc) and list that total as the userstory value? Is there another way to get a list of the userstories with the tasks