Thomas DeWeese wrote:
What is the form of the Logo in SVG? Just a 'G' and SVG elem or a 'use'?
It's a plain old <g> element.
Update:
By carefully commenting and uncommenting code i narrowed the problem down to this line where i search the new data for a particular node:
// root is an element that was created off the main SVG document using // getSVGDocument().createElementNS(null,"myns:newdata") Node n = XPathAPI.selectSingleNode(root, "//[EMAIL PROTECTED]'" + id + "']");
Uncommenting this line makes the canvas behave consistent again.
How can XPathAPI possibly influence the canvas in this way? Granted it searches a node that was created using the main SVG document, but that node is never appended to the main document.
Does anyone know of a better way to search for a node by attribute ID starting from a certain parent Node?
Regards Jorg
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
