0

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 Answers2

2

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

<xp:fileUpload id="fileUpload1" value="#{document.field1}"></xp:fileUpload>
Per Henrik Lausten
  • 21,331
  • 3
  • 29
  • 76
0

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.

mzhuk
  • 140
  • 10