在搜索 2.0p5 文档时,我找不到为 rallyiterationcombobox 设置项目的方法。因此,它显示了错误的迭代。与 rallyteamcombobox 一样,我添加了一个项目键/值对,但似乎被忽略了。如何使用 rallyiterationcombobox 选择与其他项目关联的迭代?
问问题
92 次
1 回答
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);
},
});
})();
于 2013-10-21T21:47:35.770 回答