Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8083895
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T17:37:23+00:00 2026-06-05T17:37:23+00:00

What would it take to create a TASK card board with mappable states like

  • 0

What would it take to create a TASK card board with mappable states like Rally’s existing Kanban board supports.

I would like to add one or two custom task states: like “ready to merge” and “unit test complete”. The existing task board doesn’t support this feature.

I played with the card board code using the Rally 2.0 SDK (preview) and was able to quickly display tasks in custom state columns, but the mapping is where I got lost, as I am unsure how to map these custom states to the default Defined/In-Process/Completed states. I was curious if you had any pointers as to what triggers or components to use for state mapping.

I know there can be some opposition to additional task states, but in some engineering firms, where coding is closely tied to tasks, additional states can make sense at the task level.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T17:37:25+00:00Added an answer on June 5, 2026 at 5:37 pm

    First let me give you some caveats.
    Your mappings will only work for this specific board and any other view. So the changes can get out of sync fairly easily.

    Here is some code that should do what you are expecting. You can get gist for it here
    https://gist.github.com/2926610

    <!DOCTYPE html>
    <html>
    <head>
    <title>My Custom App</title>
    
    <!--Include SDK-->
    <script type="text/javascript" src="https://rally1.rallydev.com/apps/2.0p/sdk.js"></script>
    
    <!--App code-->
    <script type="text/javascript">
    
        Rally.onReady(function() {
    
            Ext.define('CustomApp', {
                extend: 'Rally.app.App',
                componentCls: 'app',
                mappedToField:"State",
                mappedFromField:"Mapme",
    
                fieldNameMap:{
                    a:"Defined",
                    b:"Defined",
                    c:"In-Progress",
                    d:"In-Progress",
                    e:"Completed"
                },
    
                launch: function() {
                    this.add({
                        xtype:'rallycardboard',
                        types:['task'],
                        attribute: this.mappedFromField,
                        listeners:{
                            beforecarddroppedsave:function(cardboard, card) {
                                //map the new state from on this card to the new state
                                var newState = this.fieldNameMap[card.record.get(this.mappedFromField)];
                                card.record.set(this.mappedToField, newState);
                            },
                            scope:this
                        }
                    });
                }
            });
    
            Rally.launchApp('CustomApp', {
                name: 'My Custom App'
            });
    
        });
    
    </script>
    
    
    </head>
    <body class="myApp">
    </body>
    </html>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to know if there is a way to take create a
What are the most efficient SQL queries that would take an existing MySQL table
I would like to build Nuget package for my add-on which will be used
I am new to programming on the Android and would like to create an
It would take too long to explain why I need this, but I was
I would really appreciate if you would take a look at this piece of
I want to write a program that would take a string, let's say Fox
I am wondering what other approaches you would take to do some simple string
Is there any plugin for jQuery that would take an argument for the max
I was looking for some utility class/code that would take a java bean and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.