Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X
I have an ADocument (doc1) that contains XML with tracked changes. I want to copy some of the nodes from doc1 to another ADocument (doc2). In Java, I use the doc2.importNode(node) to import the nodes. Everything is copied correctly into doc2 except for the tracked changes. The resulting doc2 has the tracked changes "accepted". I need to have the tracked changes also copied over into doc2.
If aIprogramatically walk the doc1 DOM, I do not see any tracked changes in the DOM.
In all cases, I have the Editor options set to display the tracked changes highlighted.
How do I get the tracked changes to appear in the ADocument DOM structure? How can I copy a node between documents and include the tracked change markup?
Thanks. Do you recommend any alternative approaches to copy nodes between documents with tracked changes?