我正在使用下面的代码并返回一些有关“提起反对”的信息 属性。但在那里我无法找到属性数据。请帮忙
document.execCommand("insertHTML", false, "<span class='own-class2'>"+"Test"+"</span> ");
使用以下代码通过Id找出工作项:
IAttribute someAttribute= workItemClient.findAttribute(projectAreaHandle, workItem.CATEGORY_PROPERTY, monitor);
使用此工作项我想获取与工作项相关的Epic和故事工作项之类的父级和子级。然后有故事状态,故事计划等属性。
答案 0 :(得分:1)
来自this thread:
我认为你不能只在那里放一根绳子 您必须从字符串中找到类别对象,然后放入
ICategory
对象。
这意味着:
private static String CATEGORY_NAME = "UI1";
List<ICategory> findCategories = workItemCommon.findCategories(projectArea, ICategory.FULL_PROFILE, monitor);
for(ICategory category : findCategories) {
if(category.getName().contains(CATEGORY_NAME)){
filedAgainstAttribute = QueryableAttributes.getFactory(IWorkItem.ITEM_TYPE).findAttribute(projectArea, IWorkItem.CATEGORY_PROPERTY, auditableClient, monitor);
filedAgainstExpression = new AttributeExpression(filedAgainstAttribute, AttributeOperation.EQUALS, category);
}
}