I'm having an issue setting the display text for an AttributeComboBox on Rally (SDK 2.0p, not the newer versions). Currently, the AttributeComboBox generates a list of the URL address for each owner within the current project, but not the name of each owner. I thought setting displayField to 'Owner.Name' or something similar would work, but it hasn't. Here is my following code (Javascript):
this.down('#ownerFilter').add({
xtype: 'rallyattributecombobox',
cls: 'filter',
model: 'UserStory',
field: 'Owner',
displayField: 'Owner',
valueField: 'Owner',
allowBlank: false,
listeners: {
ready: this._onOwnerComboBoxLoad,
select: this._onOwnerComboBoxSelect,
scope: this
}
});
(Note: Sample code has been changed. Attribute has been changed from "iteration" to "owner".)
Instead of having my AttributeComboBox generate a list of URL addresses (which do correspond to the owners within the current project), how do I make the names of the owners appear instead?
I feel like the answer is extremely simple, but I haven't been able to figure it out. Any help would be greatly appreciated.