Type フィールドと State フィールドの今後の更新により、Rally Portfolio Item Kanban Board アプリのコンボボックスが壊れ、State の読み込みに問題が発生するようです。
影響を受ける 2 つのコード スニペットを次に示します。更新方法を明確にする必要があります。
this.typeCombo = Ext.widget('rallycombobox', {
fieldLabel:'Type:',
labelWidth:30,
labelClsExtra:'rui-label',
stateful:false,
margin: '0 10 0 0',
storeConfig:{
autoLoad:true,
remoteFilter:false,
model:'Type',
sorters:{
property:'ordinalValue',
direction:'Asc'
},
cls:'typeCombo',
defaultSelectionToFirst:false,
context:this.getContext().getDataContext()
}
});
と
Ext.create('Rally.data.WsapiDataStore', {
model:'State',
context:this.getContext().getDataContext(),
autoLoad:true,
fetch:['Name', 'WIPLimit', 'Description'],
filters:[
{
property:'StateType',
value:this.currentType
},
{
property:'Enabled',
value:true
}
],
sorters:[
{
property:'OrderIndex',
direction:'ASC'
}
],
listeners:{
load:function (store, records) {
if (options.success) {
options.success.call(options.scope || this, records);
}
}
}
});