wrt numbers in JavaScript...All numbers in JavaScript are stored as 64-bit (8-bytes) base 10, floating point numbers. This will probably provide enough space for your IDs.
--
You received this message because you are subscribed to a topic in the Google Groups "Google Web Toolkit" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-web-toolkit/gC76hol4ZIo/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-web-tool...@googlegroups.com.
To post to this group, send email to google-we...@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
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-tool...@googlegroups.com.
Why does your code need to run on the JVM?
If I was in your position, I would look for a Gwt-only solution. It definitely supports your use case, look at JSNI and the ScriptInjector.
Nonetheless, overall I would advise to use such techniques as little as possible. They make large and complex code bases unstable and hardly testable. They are meant to provide an interface to existing javascript. If your code base is not going to be large and complex, why are you using gwit ;-)
- Oliver
--