如何制作文本输入的activiti show textarea字段?

时间:2013-03-11 04:27:01

标签: activiti

如何为下面的formProperty创建textiti show textarea字段的文本输入?

<extensionElements>
        <activiti:formProperty id="Ata"
        name="Ata"
        required="true"
        type="string" />
    </extensionElements>

1 个答案:

答案 0 :(得分:2)

  1. 扩展AbstractFormType类并覆盖它的方法,如本示例所示TextAreaFormType.java
  2. Activiti Explorer在Vaadin中实现,因此表单字段也必须使用Vaadin实现。 Here 您可以找到示例实现

  3. 将自定义表单类型添加到applicationContext.xml中的流程引擎配置 applicationContext.xml


  4. <bean id="processEngineConfiguration" class="org.activiti.spring.SpringProcessEngineConfiguration">
    <property name="customFormTypes">
    <list>
    <ref bean="userFormType"/>
    <ref bean="textAreaFormType"/>
    </list>
    </property>
    </bean>
    <bean id="userFormType" class="org.activiti.explorer.form.UserFormType"/>
    <bean id="textAreaFormType" class="org.bpmnwithactiviti.explorer.form.TextAreaFormType"/>