I’m working with version 5.9.1 and I’m not getting a widget to repeat itself. Can you help me?
Have you tried to configure the iteration on the task’s form ?
Have you tried to configure the iteration on the task’s form ?
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();