Hi All,
How to create A XML file, where in Subtags consist of Attribute as below
<Fields>
<AxTableField xmlns="" i:type="AxTableFieldString">""
</Fields>
I have used below code and refer my output.
Code : {
xmlElementAxTableField = nodeTableFields.appendChild(xmlDoc.createElement("AxTableField"));
xmlElementAxTableField.setAttribute2('type','i','AxTableFieldString');
}
output :
<AxTableField xmlns:d3p1="i" d3p1:type="AxTableFieldString"/>

*This post is locked for comments
I have the same question (0)