IBM ICN 3.0.3 - 内容对话框中单值 属性 的 ChoiceList 显示不当

IBM ICN 3.0.3 - Ugly display of a ChoiceList for a mono-valued Property in the Content dialog

给定文档 class,条目模板的单值 属性 与 ChoiceList 相关联。如果 ChoiceList 没有 "sublevels" (Choice).

,这很有效

当添加组选择并且用户尝试填充 属性 时,对话框变得丑陋,并显示如下:

有没有办法自动展开根 Choices 的树视图,并且删除 "none" 标签("Aucun" 法语)以及 ChoiceList 的符号名称(此处模糊)?

我是否必须编写一个插件来解决这个问题?

Update.这里"Aucun"的目的是清空字段。

我联系了支持团队,简而言之,“开箱即用”是不可能的。但我找到了解决方法。

我写了一个 ResponseFilter 来捕获请求的响应 /p8/openContentClass。原来它的响应包含 ChoiceList 值:

 {
     "classes": [{
             "parentClassId": "<PARENTCLASSID>",
             "template_name": "<ENTRYTEMPLATE>",
             /* [...] */
         }
     ],
     /* [...] */
     "criterias": [/* [...] */, {
             "settability": "readWrite",
             "defaultOperator": "EQUAL",
             "minValue": null,
             "uniqueValues": true,
             "orderable": false,
             "choiceList": {
                 "choices":                   /* <----- here */,
                 "displayName": "CL_ToFilter"
             },
             /* [...] */
             "name": "<propertyName>"
         }
     ]
 }

重新格式化 "choices" 条目以获得一级选择列表确保在一级显示。 ResponseFilter下面的相关代码:

public class ChoiceListValuesResponseFilter extends PluginResponseFilter {
     public String[] getFilteredServices() {
         return new String[] { "/p8/openContentClass"/* "/p8/openItem"*/ };
     }
     public void filter(String serverType, PluginServiceCallbacks callbacks,
             HttpServletRequest request, JSONObject jsonResponse) throws Exception {
         
         // [...]
         
         JSONArray jsonProperties =
                 (JSONArray) jsonResponse.get("criterias");
         Iterator it = jsonProperties.iterator();
         
         while (it.hasNext()) {
             JSONObject jo = (JSONObject) it.next();
             if ("<PROPERTYWITHFILTEREDCL>".equals(jo.get("name"))) {
                 JSONObject choiceListJo = (JSONObject) jo.get("choiceList");
                 // do the processing here
                 break;
             }
         }
     }
    // [...]
}