xmlLocData VariableRepresents the current CUSTOM_* element within the current LOC element. RemarksUse this variable with the TQS XML data access functions to load data for your custom location. The variable xmlCurLoc represents the current LOC element. The xmlLocData object is equivalent to the object returned by xmlChildOf(xmlCurLoc, "CUSTOM_*", 0) in TQS 2.5 and later. Example<CUSTOM_FOO> <FOO> <BAR>Inside Bar</BAR> </FOO> </CUSTOM_FOO> fooEl = xmlChildOf(xmlLocData, "FOO", 0); barEl = xmlChildOf(fooEl, "BAR", 0); spanBar.innerText = barEl.text; The HTML element spanBar will display Inside Bar. |