I have this code that iterates over tasks:
Ext.Array.each(data, function(task) {
var t = {
FormattedID: task.get('FormattedID'),
Name: task.get('Name'),
Estimate: task.get('Estimate'),
Owner: task.get('Owner')._ref,
};
}
I can get it print /user/1234
but this does not work:
Owner: task.get('Owner').UserName