0
votes

I have this Notes document, maintained in Notes but displayed in a browser through XPages. The document contains a rich-text field. The rich-text contains some pass-thru HTML (< h r > for example, it works), but it also contains an iframe that is somehow filtered out.

Does anyone know more about this, to be more specific: does anyone know how to set XPages to produce all pass-thru HTML?

1
Is your question how to extract only the passthough html from a RT field and display it in XPages?Thomas Adrian

1 Answers

4
votes

if the problem is the filtering of the iframe then just set the property htmlFilter of your richtext control to "identity". That switches off all content filtering.

<xp:inputRichText id="inputRichText1"
                    value="#{document1.postBody}" htmlFilter="identity"
                    htmlFilterIn="identity">
</xp:inputRichText>