tags:

views:

13

answers:

0

Hi,

I have a dojo tree that its nodes are created temporary in memory. I assigned every new node an id by timestamp like this: var newID = new Date().getTime(). This new node will associate with a form to control its info. My expected is: when the form is submit, the new id came from the database will replace the timestamp id above. How can I do this?

Thanks!!!