在搜索2.0p5文档时,我找不到为rallyiterationcombobox设置项目的方法。因此,它显示错误的迭代。与rallyteamcombobox一样,我添加了一个项目键/值对,但似乎被忽略了。如何使用rallyiterationcombobox选择与其他项目相关的迭代?
答案 0 :(得分:1)
在深入研究rallyiterationcombobox课程后,我决定扩展它。我添加了一个字段,现在它可以实现我想要的效果。
(function ()
{
var Ext = window.Ext4 || window.Ext;
Ext.define('Rally.ui.combobox.ProjectIterationComboBox', {
extend: 'Rally.ui.combobox.IterationComboBox',
alias: 'widget.rallyprojectiterationcombobox',
initComponent: function()
{
this.config.storeConfig.context.project = this.project;
this.callParent(arguments);
},
});
})();