Questions tagged [code-rally]

81 questions
2
votes
2 answers

why contains keyword is not working on rally api query

I am trying to query on rally api by using below req.Query = new Query("User.ObjectID", Query.Operator.Equals, loggedinUser.ToString()).And(new Query("Role", Query.Operator.Contains, Role).And(new Query("Workspace.ObjectID",…
Sanjay
  • 1,226
  • 3
  • 21
  • 45
2
votes
1 answer

How to retrieve the user story and build model changesets from Rally

I need to pull the changeset belongs to userstory along with build changesets. // load the data _loadData : function(loadUi) { console.log('load data started'); Ext.create('Rally.data.wsapi.Store', { model : ['User Story','Build'] autoLoad :…
sharan
  • 63
  • 1
  • 10
2
votes
1 answer

CA Rally: How can I get all features for a release on a specific date

I need to get a list of all Features that belonged to a specific Release on a specific date. I know basically how to use the lookback API and I can use it get the Release object for the specific date. The problem is the Release Object doesn't seem…
Maverickz
  • 81
  • 1
  • 6
2
votes
1 answer

How to connect Rally API (python) to the specific reports under 'Report' section

I have been working on developing a Rally API using python with the help of links pointed by Rally help (Pyral). My code connects well with the Rally server and pulls specific user story I want, but not the columns I am interested in. I am aiming to…
Garry
  • 21
  • 4
2
votes
2 answers

Query to get the list of all user story I had once work on in Rally

I am a developer. I have come across a scenario where I need to get the list of all user stories on which I had worked once but now its owner is some one else like QA. Now those user stories have QA person as owner so I can not write query as [Owner…
Adarsh Kumar
  • 1,134
  • 7
  • 21
1
vote
2 answers

Fetch more than 200 sharedviews in to rally ext combo box

I am working on developing a custom rally report which has got several views - these views sit in the combo box - to my surprise, I have noticed that on the page load only 200 are retrieved but I have 300 views for this report. I haven't got any…
1
vote
2 answers

Rally HTML app always forces browser scroll bar - how to avoid this?

I've noticed that when I add an HTML app in Rally/Agile Central, the height doesn't fit/adjust within the browser windows. This means that a vertical scrollbar is always added. I'm using Chrome and Firebox, but they both have this problem. Is there…
1
vote
1 answer

Display all associated children with wsapi.Store

I've been searching for a way to display all the defects for a project and it's children in Rally, however I can't seem to find the right way to go about this. In the constructor it seems there is no parent property, however I've seen this…
Tyler40k
  • 11
  • 2
1
vote
1 answer

How to add two models in single store or single grid based on -ref and date range in customize rally app?

I am a beginner for the development of customized rally app. I have a portfolio item and revisions for every Marketable feature. I have two models PortfolioItem/MarketableFeature and Revision, using this two models I want to make a grid. I facing…
1
vote
4 answers

Grid Column Renderer not called

I have an issue with a rally grid column render not getting called when using the filtering plugin. When first entering the page it works fine, even the filtering. But if I do a page refresh (browser F5 or go to another page and back) the renderer…
1
vote
1 answer

If I created a store of user stories. Is there a way to fetch the name of the parent program's name associated with a story

So far I have only been able to reach the parent one step up, in this case the name of the feature.
Amanda
  • 21
  • 4
1
vote
1 answer

How to control when a gridboard is generated?

I’m creating a list of features using a Rally.data.wsapi.TreeStoreBuilder and a rallygridboard to display the list. I do however need to load additional data in the TreeStore, namely the predecessor and successor stores, in order to also display the…
1
vote
1 answer

Using PortfolioItem/Feature model on custom store

I'm creating an overview of features and their feature dependencies (not user stories). I'm fetching the wsapi store filtered on release in step 1 and in step 2 I'm fetching the predecessor and successor collections in order to display their…
1
vote
1 answer

Custom rendering of Agile Central grid field

I'm trying to create a custom grid with columns for Feature Predecessors and Successors. I've managed to extract the data and display the relevant formatted IDs of the pre+suc in clear text. Now I would like to format these as "standard"…
1
vote
3 answers

CA Rally - Concurrency conflict: [Object has been modified since being read for update in this context] Error

I have an array of testcases that I am attempting to add to a testset in Rally using the rally api's. I iterate through the array and call this method for every testcase in the array. They are all being added to the same…
1
2 3 4 5 6