在Rally SDK 2中,我做了一个标签选择器,然后将其添加到了容器中。呈现正常,但是当用户点击下拉箭头时,控制台会报告错误(未捕获的TypeError:对象#没有方法'getContextPath'),并且标记选择器不允许用户选择标记(每隔一次,不过,它们已列出)。
this.tag_picker = Ext.create('Rally.ui.picker.TagPicker', {
width: 275,
fieldLabel: "Tags: ",
allowBlank: true,
minHeight: 100,
autoExpand: true
});
this.down('#big_box').add( this.tag_picker );
最佳答案
查询首选项键以确定是否应显示工具提示时存在一个错误,并且尝试使用Rally.getContextPath()构建请求URL。解决方法是,可以将toolTipPreferenceKey设置为undefined(toolTipPreferenceKey:undefined),以避免出现此错误。