How can i do to getting a widget to repeat itself.

1
0
-1

I'm working with version 5.9.1 and I'm not getting a widget to repeat itself. Can you help me?

2 answers

1
0
-1

Have you tried to configure the iteration on the task's form ?

Comments

Submitted by patricia.lopes_... on Wed, 12/20/2017 - 11:20

What I want is that when I select the folder through the cmis connector it will move me from the contents of the same folder. For this I used the following code:

import org.apache.chemistry.opencmis.client.api.CmisObject;

Collection content= new ArrayList();

while(folderContent.iterator().hasNext()) {
CmisObject item = folderContent.iterator().next();

content.add(item.getName());

}

return content.sort();

1
0
-1

Have you tried to configure the iteration on the task's form ?

Notifications