Rally multi select 下拉菜单

Rally multi select dropdown

有没有办法在 Rally 中为用户故事的计划状态字段创建多个 select 下拉列表。我想根据他们的日程状态过滤用户故事。

我已经阅读了文档,Rallyfieldpicker 似乎很适合这个,但我不清楚如何过滤用户故事字段。 我试过以下没有效果:

       {
        xtype: 'rallyfieldpicker',
        autoExpand: true,
        modelType: 'userstory',
        fieldLabel: 'Filter by Schedule State',
        filterFieldName: 'ScheduleState'
       }

有人可以帮我解决这个问题吗?谢谢!

rallyfieldvaluecombobox 有一个 multiSelect 配置 属性。每个选择前面没有复选框表示允许多选,但它支持多选。

this.add({
   xtype: 'rallyfieldvaluecombobox',
   model: 'UserStory',
   multiSelect: true,
   field: ScheduleState,
    listeners: {
        select: this._getFilter,
        ready: this._getFilter,
        scope: this
    }
});

this github repo

中查看使用它的自定义应用示例