-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathApp.js
37 lines (30 loc) · 900 Bytes
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/**
* This example uses stores to read items from WSAPI
*/
Ext.define('Rally.gettingstarted.DataStores', {
extend: 'Rally.app.App',
/**
* The app execution entry point
*/
launch: function() {
this._loadStories();
},
/**
* Create a store to load unaccepted stories that
* have at least one defect associated to it. The data should be loaded
* using the current project scoping. Call _onStoriesLoaded on successful load.
*/
_loadStories: function() {
},
/**
* Load the defects collection of the first story in the result store.
* Call _onDefectsLoaded when complete.
*/
_onStoriesLoaded: function(store, records, success) {
},
/**
* Print the associated defects to the console in FormattedID: Name format.
*/
_onDefectsLoaded: function(records, operation, success) {
}
});