appsdk2 - Using Rally WsapiDataStore at a certain date -
i want create chart of how many tasks in given schedule state during length of sprint. possible call wsapidatastore on each day?
what looking lookback snapshot store , using lookback api - allows specify date or point in time want query by.
a typical use looks this:
ext.create('rally.data.lookback.snapshotstore', { pagesize : 10000, fetch : ['fetch'], filters : [{ property : '__at', value : 'current' },{ property : '_itemhierarchy', value : 'hierarchicalrequirement' }] }).load({ callback : function(records) { ext.array.each(records, function(record) { // each record }); } });
Comments
Post a Comment