jmucchiello
Member
Is there a way to change the template (presumably XSLT) for this to customize the output? It would be nice if it supported [ list ][ *][ /list] and similar constructs.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Found another one:
When you use a custom descriptor, the XML output gives you:
<descriptors>
<descriptor name="- Custom Descriptor -"/>
</descriptors>
Of course the data is in the internal file:
<pick thing="pdsOther" index="490" batchindex="245" refcount="0" fieldcount="1" source="pwDescs">
<field id="pdsUserNm" text="My super special descriptor"></field>
</pick>
You just can't get it from the XML unless you parse the summary attribute.
~add all descriptors on the power
childnode = xml[node].addchild["descriptors"]
foreach pick in focus.gizmo from PowerDesc
grandchild = xml[childnode].addchild["descriptor"]
xml[grandchild].attr["name"] = eachpick.field[name].text
nexteach