Technical questions about coding to Rally Software's various APIs including the App SDK, Ruby & .NET APIs, and Web Service API.
0
votes
0answers
4 views
Copying Rally workspace project from one workspace to another
In Rally, I want to copy some of the projects from one workspace to another newly created workspace. Has anyone tried it or has written scripts for it?
0
votes
1answer
18 views
Data for Rally Charts do not show using Rally login key model
I am trying to create an HTML page to access Rally reports external of Rally. The below code is modified sample code where I am trying to show a burndown chart with my login key, workspace, and ...
0
votes
0answers
6 views
Rally API: How to print or export to pdf from Custom HTML
I have created table with data using "custom html app".
I want now print this page but when I try to do it, it cuts few last columns.
I have tried to set style of body to "width:1000px" and then it ...
0
votes
0answers
12 views
How to use CSS to change font color of emptyText
I am using a non-editable objectPicker and setting the empty text:
this.statePicker = Ext.create('Rally.ui.picker.MultiObjectPicker', {
modelType: 'State',
id: ...
0
votes
1answer
25 views
App SDK 2.0 - “Invalid Model Type”
When running queries which worked perfectly in previous version of the App SDK, I am now getting error messages regarding an invalid model type specification.
The two model types which I have ...
1
vote
0answers
19 views
RallyChart with the type being pie
I am trying to connect a RallyChart using the type specifier set to pie with a Rally.data.custom.Store. When the RallyChart has the type set to column or is blank, the data shows correctly. When the ...
0
votes
1answer
17 views
How to create dropdown list with TestSet names in Rally sdk
I'm trying to create dropdown list with names of TestSets. I need that for filtering purpose.
I have tried with below code:
function dropdownChanged(dropdown, eventArgs) {
var ...
0
votes
0answers
4 views
With the TagPicker component can you default a tag selection ?
Using the TagPicker component I'd like to be able to preselect one (or possibly more) Tag values. Can this be done ?
1
vote
1answer
38 views
Questions on formatting and clearing the rallymultiobjectpicker
I am using the rallymultiobjectpicker to filter my grid but need some help on the following:
var cb = Ext.create('Rally.ui.picker.MultiObjectPicker', {
modelType: 'Project',
...
0
votes
0answers
15 views
Adding TestCaseSteps to TestCases using Rally Rest for Java
I am creating a function that updates Test Cases, and have been stumped for a while with this situation. I am trying to figure out a way to add given steps to test cases and it has not been working. ...
1
vote
3answers
173 views
rally rest api java toolkit sslpeerunverifiedexception : peer not authenticated
I am trying to use this toolkit to test Rally's webservice api. We have an internal setup of Rally. My code looks like this:
RallyRestApi restApi = new RallyRestApi (new URI("https://rally"), ...
0
votes
1answer
24 views
KeyNotFoundException in DynamicJson
Using the create defect example from the .NET toolkit page here.
I get the following error when trying to use the DynamicJsonObject -
toCreate["Name"] 'toCreate["Name"]' threw an exception of type ...
1
vote
1answer
24 views
how can I query for releases / iterations via rally c# api?
I am trying to query on both Release and Iteration so I can fill out a drop down list with these various values. I'm not quite sure how to do this, however. What are the members of the object that ...
1
vote
1answer
26 views
Components start out overlapping then move when window is resized
I am writing a Rally app that has both a chart and a grid in separate Rally containers. The containers are in a 'vbox' (vertical box) layout. They are set up like:
{
xtype: 'container',
...
1
vote
1answer
19 views
How to hydrate Project name in SnapshotStore
When using the SnapshotStore, I have been unable to hydrate the "Name" property of the objects that are returning as part of my query. I get the correct OID for the project, but I would like to ...
1
vote
0answers
32 views
Export a Rally Chart as jpeg
Highcharts supports this via exportChart() method, but this is not supported by the rallychart? Is there a work around for now?
var chart = this.down('#chart');
chart.exportChart({
...
10
votes
0answers
107 views
Using Rally SDK2 seems to have trouble with opening a new window/tab with a _blank tag
If I create a custom HTML page in Rally with straight HTML and a link to a story to open in another window, clicking the link takes me to the details page of the story properly. But if I wrap the same ...
0
votes
2answers
27 views
How to keep Rally radio button field stay same size while resizing window
In my current app I have a radio field that is sitting in the upper-left corner of the window. I have given this component a class name of 'radio-buttons' and given the following css to the ...
0
votes
1answer
28 views
Setting card owner 2.0p5
I am updating my custom kanban boards, and running into an issue with the newer API. This worked in 2.0p2, but not working in 5.
I have some code that is trying to set the current card to the ...
0
votes
1answer
23 views
How do I query defects by specific defect suite of Rally using Java tool kit rest api [closed]
I am trying to query defect details from rally using java rest api. I need to query defects assocaited with defect suite. I am not able to filter it that way. Please help.
3
votes
1answer
63 views
How to paste a style sheet into a new document window in a Rally app
I am trying to make a Rally app that shows User Story cards and then pops up a print window when a button is pressed. Everything works well except when pasting the html into the Custom HTML app in the ...
0
votes
1answer
20 views
How do I load a MultiObjectPicker with valid States for a PortfolioItem type eg PortfolioItem/FEATURE
I would like to load a MultiObjectPicker with valid States for a PortfolioItem type. I have tried with a custom query using TypeDef._refObjectName, but it does not filter the data.
var ...
1
vote
0answers
40 views
Rally Rest API used in a windows service
I'm writing a windows service that uses the Rally Rest API. The below code works fine when not run as a service.
api = new RallyRestAPI(new URI(url), user, pass);
but when I try to use it:
...
0
votes
0answers
24 views
Unable to Retrieve Tasks Using Java Rally Rest API
I am able to retrieve 8k Iterations and 7k Hierarchical Requirements from Rally in less than 30 min, but I am unable to retrieve 11k Tasks using the same code after 12 hours.
RallyRestApi restApi ...
1
vote
2answers
67 views
Rally API: documentation list of fields for portfolio items?
I am using the Rally API (http://developer.help.rallydev.com/ruby-toolkit-rally-rest-api-json) via Ruby. I'd like to query Portfolio items for their attributes (fields?). I have working code, e.g. ...
1
vote
1answer
30 views
Find reference using the field name using Rally Java rest api
Is there any methods available in Rally to find the field needs a reference value or not. For eg, i'll get Owner,TestFolder, priority, severity. Out of these fields first 2 needs a reference string to ...
1
vote
1answer
24 views
rallydev - query for custom grid - how to show tasks where work product is tagged
I am trying to create a query for a custom grid. I want to show all tasks where the work product (user story the tasks belong to) is tagged with a specific tag.
For example:
US101 - Build a house ...
0
votes
0answers
26 views
Rally Excel Add In giving error in Test Case import
I am using Rally Ad In for Excel with Excel 2010 to upload some test cases. The test case schema defines fields which go till column 'U' in Excel and I have used all of them to define my test cases. ...
1
vote
1answer
35 views
Rally SDK 1.32 - Efficiently determine “active” projects
I'm working on some custom reporting which needs requires a list of active projects within Rally. Although projects in Rally have an active indicator that I could read, we determined this wasn't the ...
0
votes
1answer
17 views
how can i find the type names in the rally rest client for ruby?
under the 'read-me' section here:
https://github.com/RallyTools/RallyRestToolkitForRuby
it says:
#type names are stored in rally.rally_objects hash, you can inspect there for a list
i'm ...
1
vote
0answers
38 views
Need help to fetch data from rally
I am very new to Rally and wanted some documentation details on the API. What will help me to get the details of a chart or graph and use it on some other web page?
1
vote
1answer
28 views
AttributeDropdown errors (SDK1.0) in Debug but not in App?
When I create an app with the AttributeDropdown, and try to test it in debug, I get an error (Attribute Dropdown: A query error occurred) and the dropdown is not displayed, however if I use rake to ...
2
votes
1answer
30 views
Make Rally button and Rally combobox Inline
I am trying to do basic CSS with rally components. Currently I am working on getting an xtype 'rallybutton' to be inline with an xtype 'rallyiterationcombobox'. I am using a CSS file that ...
0
votes
1answer
384 views
Add test cases to test set using Ruby Rally Rest API
I'm trying to add test cases to a test set in Rally.
I have the test set object and the test case object.
I can REPLACE the entire test set list with THIS test case object and it works fine.
But I ...
0
votes
0answers
26 views
Rally webservice on custom web links
After changing the Display Name of a custom web-link field in our testcases our code that creates items through the web-services could no longer populate these custom fields.
After further inspection ...
1
vote
1answer
29 views
!contains on Notes field
My app has keywords boxes to provide words to filter on containing or not containing and it does it in a number of fields on the objects (defects, user stories and tasks) such as Notes and ...
1
vote
1answer
46 views
How do I create a task with required fields using the rally ruby api?
I'm trying to create a task using the following sample code:
fields = {}
fields["Name"] ="test"
fields["Workspace"] = ...
1
vote
2answers
69 views
How to print a custom grid app?
I have added a print button and a PrintDialog to my custom app and now need to write a print function.
Do I need to open up a new window and build a table containing the grid data formatted with css ...
0
votes
0answers
41 views
How can I add a templatecolumn to the local data model for the grid to allow for filtering?
I have grid with a templatecolumn which returns the status label for Portfolio Items % StoryPlanEstimate using the Rally.util.HealthColorCalculator.
How can I add this templatecolumn to the data ...
1
vote
1answer
66 views
How to get custom data in a combo box
I am trying to populate a combobox with a list of Project names. I am able to successfully get all Project names, but I cannot seem to figure out how to add them as a custom set of data to a ...
2
votes
2answers
57 views
SDK2: Links in Rally Grids and column width
I'm displaying a link to a defect in a Rally Grid in the simple way:
columnCfgs: ['FormattedID', 'Name', ...]
This creates a link to the defect, just like it should. But the column width is way ...
0
votes
2answers
55 views
Grabbing Name attribute of Tags/Tag in Rally
I have been looking at the rally Object model, but I can't figure out how to grab the Name attribute of a Defect's Tag.
I made sure to include Tag and Tags in my fetch statement. I am storing all the ...
0
votes
1answer
36 views
How do I find out who deleted (removed) an Iteration from Rally?
I am using the Excel Add-in to look at revision history. I would like to locate the information (User, Date, Time, etc.) when an Iteration in Rally was "removed". I am able to obtain this but get ...
0
votes
1answer
57 views
Making a connection to Rally with Ruby Toolkit for Rally REST API (rally_api)
I'm trying to connect using the ruby API toolkit.
I followed the instructions in: https://developer.help.rallydev.com/ruby-toolkit-rally-rest-api-json
The script is exactly the same as the chapter ...
0
votes
1answer
60 views
How do I read the attachment content on a Defect
Using the Rally Java Rest API, after I get the AttachmentContent object, how do I actually get the bytes which hold the content?
0
votes
0answers
23 views
Rallygrid — how to get a standard gear menu?
Does anyone have an example of how to use Rally.ui.grid.RowActionColumnView? I got it to render the gear for a menu but can't get actions to work or find much documentation. I'd love to get the ...
1
vote
1answer
52 views
Rally query with multiple filters not working
I am trying to query Rally with multiple filters. I am looking to query Rally for all defects in a specific project that have defects with a specific CreationDate. When I send the query, I get 0 ...
1
vote
1answer
41 views
Using the LookbackAPI to find Scope Change
Is there a way to query using the LookbackAPI to find all the stories (HierarchicalRequirement) that had a change to PlanEstimate from a certain date (say a week ago) to today?
Or is the best way to ...
1
vote
1answer
193 views
Caused by: com.google.gson.stream.MalformedJsonException: Expected EOF at line 1 column 21
I am trying to run the sample java program to retrieve the top 5 defects from rally. I am getting the following error:
Querying for top 5 highest priority unfixed defects...
Exception in thread ...
0
votes
2answers
49 views
Rally Add-in for Excel 2007 not appearing in Excel ribbon
I installed the Rally Add-in for Excel last week and it was working fine. The rally tab was appearing in excel. Today however the rally tab has vanished.
I've tried repairing, uninstalling and ...
