Access to non-informational values โโfor a component is invoked by many developers. This is not surprising since there is no obvious way to view the complete XML component of a component from the user interface. The source tab in the CME (SDL Tridion CM user interface) shows only the XML content of the node in XML and does not display the full XML.
To see the full XML (without loading it through the API), you have several options. Starting with the simplest ones:
- Use XSLT to write the root of the node component, using something like
<xsl:copy-of select="."/>
. This will write the entire XML component to the output of the template, which can then be saved for reference when writing XSLT. - Access the XML component using the protocol handler on the CMS server by typing the URI in Internet Explorer and it should display the full XML.
- Install SDL Tridion PowerTools , which set a tab in the representations of elements that display XML.
Once you can access XML, it becomes very intuitive to find any property of any Tridion object.
source share