/basicRallyGrid

Primary LanguageHTMLMIT LicenseMIT

basicGrid

Overview

License

AppTemplate is released under the MIT license. See the file LICENSE for the full text.

Rally Developer Quick Start Guide

This guide will give you a jumpstart on creating your own Rally apps. Example project

Essential Material

###Getting Started

  1. Install rally-app-builder via npm rally-app-builder
  2. scaffold your app project in terminal: rally-app-builder init <project-name>
  3. Code! All of your work will be done in app.js within the object method 'launch'
  4. When you are ready to build/deploy your app, run rally-app-builder build
    • Your app will be compiled in /deploy

Basic Tips

  • Your controllers and views are executed from the load method in the Rally API Calls' listeners. load tells your app what to do with the data it's retrieved
  • load does not fire on itself. Unless you plan to use it otherwise, you must set the autoLoad property on your app. autoLoad: true Otherwise nothing will happen.
  • In order to create a view, you MUST specify the scope under the listener. scope: this