Alfresco - 如何动态地在单选按钮中添加更多选项?

时间:2017-05-11 06:24:50

标签: java alfresco activiti

public void notify(DelegateExecution execution) throws Exception {
        execution.setVariable("radio_button_id", "Option 1");
        execution.setVariable("radio_button_id", "Option 2");
        execution.setVariable("radio_button_id", "Option 3");
}

我想添加选项1,2和3,并分别设置id option_1,option_2和option_3。应该看起来像这样

enter image description here

这是我的java代码。然而它没有用。 需要有关如何动态添加单选按钮中的更多选项的帮助

1 个答案:

答案 0 :(得分:2)

基本上,无法在java端完成UI自定义。您需要自定义共享表单。

请查看以下链接。此链接包含现有工作流程的工作流表单配置。

https://github.com/Alfresco/share/blob/master/share/src/main/resources/alfresco/share-workflow-form-config.xml

下面是自定义表单控件的链接。您需要为动态控件编写自己的JavaScript逻辑。

http://docs.alfresco.com/5.0/tasks/forms-custom-formcontrol.html