
Im having a Form where I have a Rich Text Field(lets call it imageField) added there to hold an image. The user of the Form will directly copy an image into the
imageField , not the location of the image, THE image will be copied into the field.
When I then later try to display this image on a Xpage nothing comes up..
Google wont help me with this particular problem either. Anyone out there know how to do this?
SOLVED:
As Ben over at
My Comfy Chair pointed out this is in fact quite easy to solve.
Start by making the Rich Text Field save as HTML and MIME. After that you simply refer to the field in the src part of the img tag:
src=\"myView/"+itemInView.getDocument()+"/FieldName/M2?OpenElement"
Worked like a charm for me! Thanks alot Ben!