.. ================================================== .. FOR YOUR INFORMATION .. -------------------------------------------------- .. -*- coding: utf-8 -*- with BOM. .. include:: ../../Includes.txt Using XPATH to read Flexform values ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ This tutorial shows you how you can use the XPATH content object to read XML data from a database field and retrieve values from a TYPO3 Flexform without much hazzle. Lets say we want to get the value of the summary attribute of a table content element: .. figure:: ../../Images/manual_html_7953783c.png :alt: Flexform Flexform of the table content element Let's have a look at this Flexform's XML data to locate the value we are targeting: .. code-block:: xml This is the caption This is the summary 0 0 myclass 124 For retrieving the value, we need to match the index attribute of the tag and then get to the atomic node of the tag using it's index attribute. Our TypoScript looks as follows: :: page.10 = XPATH page.10 { source.data = DB:tt_content:2:pi_flexform return = string expression = //field[@index='acctables_summary']/value resultObj { cObjNum = 1 1.current = 1 1.wrap =

|

} } Using stdWrap on the source property gets us the content element. The XPATH expression targets the atomic node in the Flexform. Of course everything could have been made much more flexible. But that's for you to try out ;)