My GWT application creates text areas, each of which must have an ID in order to be useful to a third-party JavaScript library. I know how to assign an ID to a GWT widget; I'm after a good way of generating those unique ID's.
|
1
|
|
|
|
|
|
For GWT, take a look at HTMLPanel.createUniqueId
|
||
|
|
|
|
Java has a built-in class for unique ID creation: http://java.sun.com/j2se/1.5.0/docs/api/java/util/UUID.html Another common way is by using a timestamp, i.e. |
||||||||
|
|
|
I believe this would be what you need for unique identifiers ( using a timestamp and the 'widget-' namespace ).
|
||
|
|
|
|
Javascript:
Java:
|
||
|
|
