DXL Document Table Issue

Hello,

I’m using DXL to build a document with a table of information compiled from response documents. Everything is working fine except when there are “new lines” in the text they are removed when the DXL is displayed in the table. I know they are not being removed through any of the code that builds the DXL.

Also, when I view the DXL code before it is imported the lines are retained… it is only after the import they no longer retained. This is a document so there are no fields… just inserting the text within a table cell.

I’ve tried a few of the table and tablerow element options but it doesn’t make a difference.

Thanks for any help,

Brent

Subject: DXL Document Table Issue

I found a resolution for my issue. While the DXL code is built there are some characters that are being replaced… like &amp, etc…

These characters will cause problems during import… in that same function I added a replace for chr(10) to “” and that resolved it.

XmlConvert = Replace(XmlConvert, Chr(10), “”)

Brent