Hi all,
I'm new to docx4J. I'm using Maxey's Conent Control Tool (http://gregmaxey.mvps.org/word_tip_page ... tools.html) to map two content controls in a Word Document to my custom XML part.
We develop with Groovy&Grails, this is the code I'm using:
class MyController {
def index() {
def xmlWriter2 = new StringWriter()
def xml2 = new MarkupBuilder(xmlWriter2)
xml2.'ns0:CC_Map_Root'('xmlns:ns0':'http://Greg_Maxey/CC_Mapping_Part') {
'ns0:number'(10)
'ns0:string'('A string')
}
println xmlWriter2.toString()
saveAsWord(
xmlWriter: xmlWriter2,
templatePathname: MyUtils.getResourcePathname('testTemplate.docx'),
outputPathname: ...