After some search within the source of "Ext.draw.engine.SVG", I found something quite usefull, that might help you and others having the same Issue out.
x = sprite.el.dom.getAttribute("x");
y = sprite.el.dom.getAttribute("y");
or alternatively
x = sprite.el.getAttribute("x");
y = sprite.el.getAttribute("y");