cancel
Showing results for 
Search instead for 
Did you mean: 

Reinitialize a form

fegor
Star Collaborator
Star Collaborator

Hi!,

I have a problem, I have a process with a loop with form, but in the next iterations the form not is initialized.

Can I do initialize field 'uploadfile' in begin each iteration?

Regards,

Fernando

1 ACCEPTED ANSWER

cjose
Elite Collaborator
Elite Collaborator

yeah, you got to tweak the code to meet your requirement. May be instead of delete, you may want to do something like relatedContent.setField(null);

View answer in original post

3 REPLIES 3

cjose
Elite Collaborator
Elite Collaborator

The best way to do that is to put a script/service task in the loop back to delete the existing file. You can use the relatedContentService api (com.activiti.service.runtime.RelatedContentService) to do this..I have a sample groovy script below..the 'uploadfield' will need to be replaced with your upload field id

def page = null;
int pageNumber = 0;
while ((page == null) || (page.hasNext())) {
page = relatedContentService
.getFieldContentForProcessInstance(
execution.getProcessInstanceId(), 'uploadfield', 50,
pageNumber);
relatedContentService.deleteRelatedContent(page.getContent());
pageNumber++;
}

Cheers,

Ciju

fegor
Star Collaborator
Star Collaborator

Hi Ciju Joseph

But I do not want delete the previous files, I need clean fields for a new upload.

Cheers,

Fernando

cjose
Elite Collaborator
Elite Collaborator

yeah, you got to tweak the code to meet your requirement. May be instead of delete, you may want to do something like relatedContent.setField(null);