如何为下面的formProperty创建textiti show textarea字段的文本输入?
<extensionElements>
<activiti:formProperty id="Ata"
name="Ata"
required="true"
type="string" />
</extensionElements>
答案 0 :(得分:2)
AbstractFormType
类并覆盖它的方法,如本示例所示TextAreaFormType.java Activiti Explorer在Vaadin中实现,因此表单字段也必须使用Vaadin实现。 Here 您可以找到示例实现
将自定义表单类型添加到applicationContext.xml
中的流程引擎配置
applicationContext.xml
<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"/>