An example of customizing Word templates in round-trip export #204342/HEAD / v105 |
Tags:
not added yet
In following simple tutorial we will customize the default Word export template to show the value of a custom property of the exported requirement.
1.1.1.1Inspect tracker configurationIn this example we will use the standard Test-Case tracker which has several custom properties. Let's look at the configuration of that tracker (to access this click on "Customize" menu of the tracker):
The most interesting information on this configuration is the "Property" column. This contains the property which stores the custom field. Here the customField[0]contains the Pre-Action and customField[1]contains the Post-Action values. Make a note of these. 1.1.1.2Customize Word templateNow we have the information where the custom field is stored. Let's customize the Word export template.First you should download the default template as starting point of customizations. You can access the default template as it is described in the Save the default template in the local file system, and open it in Word. To customize the "Properties" section which is appearing above each exported issue/requirement please find the "Properties Velocity Template" block in the template document. This should appear as a blue box in the template document like this:
In the default template this contains a quite complex script which displays the association and references of the export issue. In our example we don't want that, but instead we just want to export the "Pre-Action" and "Post-Action" custom fields. So as first let's delete all content from here, but keep only the beginning: #* This is a velocity template renders HTML fragment for Properties of entities *# ## load Properties specific macros: #parse("/html/mhtml-properties-macros.vm") #set($requirement = $describable) Two important things to know about the Properties part:
So if you would run an export this template what you would see now that the "Properties" part is completely missing, which is OK, as this script does produce any output. Let's now add few lines of Velocity code to the end of the script to access the Pre-Action and Post-Action fields: ## clear variables may have set previously #set($preAction = "") #set($postAction = "") ## access custom field values #set($preAction = ${requirement.getCustomField(0)}) #set($postAction = ${requirement.getCustomField(1)}) Two thing is happening here:
So that is fine, we have the Pre- and Post-actions' values, however still there is no output appearing in the export document. Let's add some more code to the end of the script to produce HTML output: #if ("$!{preAction}" != "") <b>Pre-Action:</b> $wikiMarkupProcessor.transformToHtml($!{preAction}, “W”, false, false, $wikiContext) <br/> #end #if ("$!{postAction}" != "") <b>Post-Action:</b> $wikiMarkupProcessor.transformToHtml($!{postAction}, “W”, false, false, $wikiContext) <br/> #end
What is happening here is that we check using and "if" statement if the "preAction" contains a non-empty value and then output a bold "Pre-Action" text, followed by the content of the pre-action field, and then a new line. The "$wikiMarkupProcessor.transformToHtml(...)" method call will convert the Wiki text to HTML, so if the Pre/Post-Action contains rich text (bold/italic) or even images those will be also appearing correctly in Word export. The output in the word export will look like this:
That's about it. The complete template which was used in this tutorial is available here: CB:/displayDocument/Custom-fields-template.docx?doc_id=1740293 |
Fast Links
![]() codebeamer Overview codebeamer Knowledge Base Services by Intland Software |
This website stores cookies on your computer. These cookies are used to improve your browsing experience, constantly optimize the functionality and content of our website, and help us understand your interests and provide more personalized services to you, both on this website and through other media. With your permission, we and our partners may use precise geolocation data and identification through device scanning. You may click accept to consent to our and our partners’ processing as described above. Please be aware that some processing of your personal data may not require your consent, but you have a right to object to such processing. By using our website, you acknowledge this notice of our cookie practices. By accepting and continuing to browse this site, you agree to this use. Your preferences will apply to this website only.
Note that user-behavior analytics are being captured on this server to improve the Codebeamer user experience.