cancel
Showing results for 
Search instead for 
Did you mean: 

Display a list of custom elements

parnswir
Champ in-the-making
Champ in-the-making
Hello,

I have a generated list of tickets, which I retrieve from a database. Is there a way to display their attributes in some kind of form, so that a user can evaluate them? I've searched in the docs, but thus far no hit.

Best regards
3 REPLIES 3

martin_grofcik
Confirmed Champ
Confirmed Champ
Hi,
Are you looking for task forms?
http://www.activiti.org/userguide/images/forms.explorer.png

Regards
Martin

Hi Martin,

I know how to use forms to input data, but how do I display a list, which I generated in a service task?

Regards

martin_grofcik
Confirmed Champ
Confirmed Champ
Hi,

Currently supported form properties types are

string (org.activiti.engine.impl.form.StringFormType)
long (org.activiti.engine.impl.form.LongFormType)
enum (org.activiti.engine.impl.form.EnumFormType)
date (org.activiti.engine.impl.form.DateFormType)
boolean (org.activiti.engine.impl.form.BooleanFormType)

To extend form types you can have a look e.g. on
org.activiti.explorer.form.UserFormType

which implements user support on the forms.

Regards
Martin