Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
I was able to display my element as a Custom Table by defining Table, Row and Cells using Arbortext Styler.
But since I now need to alter the content of the cells, I tried defining Generated Cells using XPath but I never was able to make the content to show. Here is the configuration I have :
The elements themselves :
Can you explain why I am never able using XPath to generate content cells, this is very crucial for me to being able to do such. Thanks
Hello,
I believe this question may have been answered in your post related to Generate a Dynamic table with Arbortext styler
If you now have the answer could you please note this as 'Solution'
This will enable other customers with the same question to know there is an available solution and where they can find the details.
I think you have a problem with your XPath expressions. When you ask for "/LongTitle", the slash at the beginning indicates you want it to look for that element at the root of the document, not in the current context. If you want to get the LongTitle element as a child of the current element (the Identification element if I'm reading the original post correctly), you should use "./LongTitle" (note the dot before the slash), or simply "LongTitle". So, try rewriting your Regulation expression like this:
concat(string(LongTitle), ' ', string(Id))