For a node
<a:cs id='x'>
If current node is id (the attribute), how to retrieve Element node; i.e; a:cs?
For a node
<a:cs id='x'>
If current node is id (the attribute), how to retrieve Element node; i.e; a:cs?
Simply with an XPath like parent::tagname
. In your case that would accordingly be: parent::a:cs
.
Be aware that this only works if a
is properly declared as boinded taglib