Re: XMLParser Problems

2013-03-17 Thread Andy King
First, it appears that your XML is invalid ... your last child element has 
a beginning tag of "ACCT005" and an ending tag of "vlst".  Assuming that 
this isn't your only problem, I think you are just not getting the child 
nodes of the "item" element, but instead you are getting the child nodes of 
the document (which would be the "item" element node).  This is how I'd 
fulfill your requirements:

  final Document doc = XMLParser.parse(item);
  final Element itemElement = 
(Element)doc.getElementsByTagName("item").item(0);
  Node node = itemElement.getFirstChild();
  while (node != null) {
if (node.getNodeType() == Node.ELEMENT_NODE) {
  // node is an account element
}
node = node.getNextSibling();
  }

Note that not all child nodes will necessarily be Element nodes ... hence 
the check for NodeType == Node.ELEMENT_NODE.

Andy

On Thursday, March 14, 2013 6:02:13 AM UTC-7, skippy wrote:
>
> I am trying to load this xml file into a hashmap or list using XMLParser.  
> What ever I try, I keep getting a node list of 1 with all the nodes in it.
>  
> Here is an example of the xml file:
> ...
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Menu Bar - hide

2013-03-17 Thread Marco

I have a strange behaviour which also occurs in GWT Showcase.

http://gwt.googleusercontent.com/samples/Showcase/Showcase.html#!CwMenuBar

In the gwt showcase there is a menubar example with the menus:

File
-
New 
Open
Close
Recent
- Fishing in the desert.txt
- How to tame a wild parrot
Exit


If I move my mouse cursor on the menu "Recent", then the submenu opens with 
"Fishing in the desert...".
After I move my cursor on the "Close" menu item, but the submenu with 
"Fishing..." does not hide and keeps open.

I hope that you agree that this is a very strange behaviour. Is there any 
solution for this, maybe I have missed a property?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: GWT to Appcelerator to native app ?

2013-03-17 Thread Alain Ekambi
Thank you :)


2013/3/17 Ivan Ooi 

> WOW!!! That awsome !!
>
>
>
>
> On Sun, Mar 17, 2013 at 11:11 AM, Alain Ekambi wrote:
>
>> Allready done :)
>>
>> http://emitrom.com/titanium4j
>>
>>
>>
>>
>>
>> 2013/3/17 Ivan Ooi 
>>
>>>  Any ideas and will GWT team interested in this ?
>>>
>>> just an idea...
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Google Web Toolkit" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to google-web-toolkit+unsubscr...@googlegroups.com.
>>> To post to this group, send email to google-web-toolkit@googlegroups.com
>>> .
>>> Visit this group at
>>> http://groups.google.com/group/google-web-toolkit?hl=en.
>>> For more options, visit https://groups.google.com/groups/opt_out.
>>>
>>>
>>>
>>
>>  --
>> You received this message because you are subscribed to the Google Groups
>> "Google Web Toolkit" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to google-web-toolkit+unsubscr...@googlegroups.com.
>> To post to this group, send email to google-web-toolkit@googlegroups.com.
>> Visit this group at
>> http://groups.google.com/group/google-web-toolkit?hl=en.
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>>
>>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Google Web Toolkit" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit+unsubscr...@googlegroups.com.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> Visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: GWT to Appcelerator to native app ?

2013-03-17 Thread Ivan Ooi
WOW!!! That awsome !!




On Sun, Mar 17, 2013 at 11:11 AM, Alain Ekambi wrote:

> Allready done :)
>
> http://emitrom.com/titanium4j
>
>
>
>
>
> 2013/3/17 Ivan Ooi 
>
>> Any ideas and will GWT team interested in this ?
>>
>> just an idea...
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Google Web Toolkit" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to google-web-toolkit+unsubscr...@googlegroups.com.
>> To post to this group, send email to google-web-toolkit@googlegroups.com.
>> Visit this group at
>> http://groups.google.com/group/google-web-toolkit?hl=en.
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>>
>>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Google Web Toolkit" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit+unsubscr...@googlegroups.com.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> Visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.