I'm working on a custom grid in Rally to create a table of Portfolio Items in my Project. One field I'm trying to expose is Planned Start Date. When used as-is, it returns datetime in the following format - "YYYY-MM-DDTHH:MM:SS.xxxZ". I've been trying to use the rally.sdk.util.DateTime.format( date(), "yyyy-MM-dd") function to just return the date instead of the whole thing when creating my rowInfo name/value pairs to add to my table, but it's not working.
Any ideas?
var tbCfgTable = {
columns: [{
key: 'ID',
width: "20%"
},{
key: 'Name',
width: "4%"
},{
key: 'Planned Start',
width: "4%"
},{
key: 'Planned End',
width: "3%"
}]
};
gTable = new rally.sdk.ui.Table(tbCfgTable);
var nbrPis = theResults.pisQueryKey.length;
for (var ndx = 0; ndx < nbrPis; ndx++){
aPi = theResults.pisQueryKey[ndx];
// populate planned schedule rows
aRowInfo = {
'ID': aPi.Name,
'Name': aPi.Name,
'Planned Start': aPi.PlannedStartDate,
'Planned End': aPi.PlannedEndDate
};
gTable.addRow(aRowInfo);
}