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
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
Have you bound each file upload control to each field too (using the value property)?
<xp:fileUpload id="fileUpload1" value="#{document.field1}"></xp:fileUpload>
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.