0
votes

Issues in Richtext field.

I have a form with 5 rich text field and binded these fields in a XPage with field upload control. when i upload same files in 2 rich text field, error message "item already exist" is shown. how to resolve this problem

2
Are they bound to different fields?Simon O'Doherty

2 Answers

2
votes

Have you bound each file upload control to each field too (using the value property)?

<xp:fileUpload id="fileUpload1" value="#{document.field1}"></xp:fileUpload>
0
votes

Have you tried using fileUpload renaming feature?

<xp:fileUpload... useUploadname="false" filename="fileName1.txt"></xp:fileUpload>

This way you could define if the issue is really in the equal filenames.