rally

add features to initiative as children (php api)

ぐ巨炮叔叔 提交于 2019-12-11 09:57:06
问题 How would I add a feature as a children to a pre-existing initiative? I would assume it's the same way you update a state in a feature: Connection::rally()->update('feature', feature_objectId, array('state' => $stateId)); This is how I have the code to add (update children field) children (features) to an initiative: Connection::rally()->update('initiative', '13298601606', array('children' => '13298601665')); The first object Id is for the initiative I would like to add the features to and

How to display custom fields in rally?

笑着哭i 提交于 2019-12-11 09:49:48
问题 I have a ruby script that is trying to pull up some custom fields from Rally, the filter works just fine ( the filter contains one of the custom fields i want to pull up) but when I try to display it, it doesn't show up in the list (the value returned for all custom fields is blank, while appropriate values are returned for FormattedID, Name, Description). Here's the link [link]http://pastebin.ubuntu.com/6124958/ 回答1: Please see this post. Do you fetch the fields? What version of WS API are

Rally AppSDK: Is there a way to facilitate “Inter-Panel” communication between Apps in the new layout schema

柔情痞子 提交于 2019-12-11 08:52:52
问题 So I'm just getting used to and getting my arms around the new "panel-based" App scheme released with the 5/5/2012 version of Rally. At first it was a bit frustrating to lose the window real estate when I've been accustomed to full-page iFrames. I am curious however - from a desire to optimize the way I use real estate onscreen for an App page - I would like to setup and utilize a multi-panel App whose components can communicate. For instance, I'd like to have one App panel display some

RallyDataSource.update is not working for portfolioitem/feature (works for userstories)

纵然是瞬间 提交于 2019-12-11 08:34:44
问题 Here is the API verison I am using: script type="text/javascript" src="/apps/1.33/sdk.js?apiVersion=1.43"></script> The goal is to display a portfolio item/feature and all the child user stories of the feature in a grid. Then based on the US fields value, update the value of the field of the portfolio item/feature. I am able to update the release field of a UserStory using rallydatasource.update command, but the same command doesn't work for updating fields of portfolio item/feature Here are

New API Key versus LoginKey for API V1.x

大兔子大兔子 提交于 2019-12-11 08:33:54
问题 In Rally's documentation for the new API Keys (https://help.rallydev.com/rally-application-manager) it says that while previously you needed to use a LoginKey for displaying information in external systems (such a sConfluence) that now you can generate an API key for each application. - However it does not indicate how you should replace the LoginKey for applications with a new API Key. For external API V1 aps using the loginkey, do you just change out the LoginKey token in the query string

App SDK: Error parsing input stream when running query

不问归期 提交于 2019-12-11 08:18:54
问题 I'm using the App SDK to query all open defects within a specific project. I'm using findAll so I believe it should be returning all results but I'm only getting back 200. There's an error within the OperationResult that says: "Cannot parse input stream due to I/O error as JSON document: Parse error: Read unexpected character 'u' while trying to read a property value. [ chars read = >>>{"defects":u<<< ]" I haven't come across this before using queries that have returned much larger results

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

Create a Project in the defined workspace using Rally Java RestAPI

谁说胖子不能爱 提交于 2019-12-11 06:36:00
问题 I’m trying to use the Rally Java REST API - https://github.com/RallyTools/RallyRestToolkitForJava. How can I create a new project in my defined workspace? I am not able to find anything useful, any help would be much appreciated. By referring the documentation, i tried the below code, but the project is not created in the Rally RallyRestApi rallyService = new RallyRestApi(new URI(rallyURL), userName, password); rallyService.setApplicationName("RallyRestExample"); rallyService.setWsapiVersion(