Hi,
I am trying to create XML from DCT using following DCT code...
please see the attached file....."container.txt"
In the above code, '
@targetURL' will become the attribute of the xml node "linktop".
While Saving the file, I want to create another attribute with the instance 'id' of the container e.g. and so on.
In the formAPI, I can loop through all the instances of the the container with following code...
function navigate() {
var inav = 1;
var linkItem;
while (linkItem = IWDatacapture.getItem("/menu/linktop[" + inav + "]")) {
i++
}}
but can not assign a new attribute 'id' and its value.
Thanks in advance...