How can i create an attribute with a namespace? To get the following output?
<tns:catalogItem xsi:type="specialItem" />
This is how i do it yet:
catalogItem( type:"specialItem");
But this generates the attribute without namespace, so its invalid
<tns:catalogItem type="tns:specialItem" />
so i'm searching for something like this (with initialized xsi for ns):
catalogItem( xsi.type:"specialItem");
Thank you in advance
chrsk