Giter Site home page Giter Site logo

rallytreegrid's Introduction

Rally Tree Grid

The Rally Tree Grid is a collection of ExtJS components to use the Ext.tree.Panel component. There is also a subclass of Ext.tree.Panel that uses the default configuration to theme the Tree Grid.

To build the examples you will need to copy them from the examples folder and rename/override the App.js file. My general command to build (on my Mac) is:

cp examples/US.js App.js && rake build && cat deploy/App.html | pbcopy

That line will copy the file, build the deployable html file and copy the contents to the clipboard.

Classes Created

  • Rally.data.TreeRootModel
  • Rally.data.TreeModelFactory
  • Rally.data.WsapiTreeProxy
  • Rally.data.WsapiTreeStore
  • Rally.ui.tree.grid.Panel

Screencast Demo

http://screencast.com/t/NnMDX85xDze

Screenshot

Rally Tree Grid Screenshot

Example

Portfolio Item Themes down to Tasks

Ext.define('CustomApp', {
  extend: 'Rally.app.App',
  componentCls: 'app',

  launch: function() {
    var store = Ext.create('Rally.data.WsapiTreeStore', {
      topLevelModels: ['portfolioitem/theme' ],
      childModels: ['portfolioitem/initiative', 'portfolioitem/feature', 'hierarchicalrequirement', 'task'],
    });

    this.add(Ext.create('Rally.ui.tree.grid.Panel', {
      store: store,
      columns: [{
        xtype: 'treecolumn',
        text: 'Name',
        dataIndex: 'Name',
        flex: 2
      }, {
        xtype: 'templatecolumn',
        tpl: Ext.create('Rally.ui.renderer.template.PercentDoneByStoryPlanEstimateTemplate2'),
        text: '% Done by Plan Est',
        dataIndex: 'PercentDoneByPlanEstimate',
        flex: 1
      }, {
        text: 'Schedule State',
        dataIndex: 'ScheduleState',
        flex: 1
      }, {
        text: 'Est. Hours',
        dataIndex: 'Estimate',
        flex: 1
      }, {
        text: 'Remaining',
        dataIndex: 'ToDo',
        flex: 1
      }]
    }));
  }
});

User Stories to Tasks with Paging

Ext.define('CustomApp', {
  extend: 'Rally.app.App',
  componentCls: 'app',

  launch: function() {
    var store = Ext.create('Rally.data.WsapiTreeStore', {
      topLevelModels: ['hierarchicalrequirement'],
      childModels: ['hierarchicalrequirement', 'task'],
      }
    });

    this.add(Ext.create('Rally.ui.tree.grid.Panel', {
      store: store,
      dockedItems: [{
        xtype: 'rallypagingtoolbar',
        store: store,   // same store GridPanel is using
        dock: 'bottom',
        displayInfo: true
      }],
      columns: [{
        xtype: 'treecolumn',
        text: 'Name',
        dataIndex: 'Name',
        flex: 2
      }, {
        text: 'Schedule State',
        dataIndex: 'ScheduleState',
        flex: 1
      }, {
        text: 'Est. Hours',
        dataIndex: 'Estimate',
        flex: 1
      }, {
        text: 'Remaining',
        dataIndex: 'ToDo',
        flex: 1
      }]
    }));
  }
});

rallytreegrid's People

Contributors

ferentchak avatar echo3toecho7 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.