我只想在看板类型板上显示当前迭代中的故事/缺陷,以帮助我们处理。
所以我在SO上找到了这个例子,并添加了QUERY行来过滤掉我的迭代。但现在我希望这可以来自拉力赛提供的迭代下拉框。
我将它添加到屏幕上,它显示正常,但我如何将其实际连接到我的查询?
<!DOCTYPE html>
<html>
<head>
<title>My Custom App</title>
<!--Include SDK-->
<script type="text/javascript" src="https://rally1.rallydev.com/apps/2.0p/sdk.js"></script>
<!--App code-->
<script type="text/javascript">
Rally.onReady(function() {
Ext.define('CustomApp', {
extend: 'Rally.app.App',
componentCls: 'app',
mappedToField:"State",
mappedFromField:"KanbanState",
fieldNameMap:{
a:"New",
b:"New",
c:"Defined",
d:"In-Progress",
e:"In-Progress",
f:"Completed",
g:"Completed",
h:"Accepted"
},
launch: function() {
this.add({
xtype:'rallyiterationcombobox',
itemId: 'iterationComboBox',
});
this.add({
xtype:'rallycardboard',
types: ["Defect", "HierarchicalRequirement"],
query: 'Iteration.Name contains "UB Sprint 29"',
attribute: this.mappedFromField,
listeners:{
beforecarddroppedsave:function(cardboard, card) {
//map the new state from on this card to the new state
var newState = this.fieldNameMap[card.record.get(this.mappedFromField)];
card.record.set(this.mappedToField, newState);
},
scope:this
}
});
}
});
Rally.launchApp('CustomApp', {
name: 'My Custom App'
});
});
</script>
</head>
<body class="myApp">
</body>
</html>
答案 0 :(得分:0)
如果要通过迭代进行过滤,则需要向iteration combobox添加一个侦听器,并根据当前选定的迭代创建一个板。
<!DOCTYPE html>
我的看板由迭代
<!--Include SDK-->
<script type="text/javascript" src="https://rally1.rallydev.com/apps/2.0p2/sdk.js"></script>
<!--App code-->
<script type="text/javascript">
Rally.onReady(function() {
Ext.define('CustomApp', {
extend: 'Rally.app.App',
componentCls: 'app',
mappedToField:"State",
mappedFromField:"KanbanState",
kanban:undefined,
fieldNameMap:{
a:"New",
b:"New",
c:"Defined",
d:"In-Progress",
e:"In-Progress",
f:"Completed",
g:"Completed",
h:"Accepted"
},
launch: function() {
this.add({
xtype:'rallyiterationcombobox',
itemId: 'iterationComboBox',
listeners: {
select: this.createKanban,
ready: this.createKanban,
scope: this
}
});
},
createKanban:function(combo, records) {
if (this.kanban) {
this.kanban.destroy();
}
var filters = [];
if (records.length) {
filters.push({
property: 'Iteration',
value: records[0].get("_ref")
});
}
this.kanban = this.add({
xtype:'rallycardboard',
types: ["Defect", "HierarchicalRequirement"],
attribute: this.mappedFromField,
listeners:{
beforecarddroppedsave:function(cardboard, card) {
//map the new state from on this card to the new state
var newState = this.fieldNameMap[card.record.get(this.mappedFromField)];
card.record.set(this.mappedToField, newState);
},
scope:this
},
storeConfig:{
filters:filters
}
});
}
});
Rally.launchApp('CustomApp', {
name: 'My Kanban by Iteration'
});
});
</script>