Re: gwt 2.1, xml. Document.getElementById() returns null

2010-12-08 Thread Thomas Broyer
On 7 déc, 01:28, Roman Makurin dro...@gmail.com wrote: Hi All! I need to handle xml on client side, so Im using following scheme: Document xml = XMLParser.parse(xmlStr); Element el = xml.getElementById(id1); at this point getElementById() returns null, but im 100% sure that element

gwt 2.1, xml. Document.getElementById() returns null

2010-12-06 Thread Roman Makurin
Hi All! I need to handle xml on client side, so Im using following scheme: Document xml = XMLParser.parse(xmlStr); Element el = xml.getElementById(id1); at this point getElementById() returns null, but im 100% sure that element with id=id1 presents in xml document. Why this happen ? And is