| Summary: Generate a UUID client-side or issue a request server-side. |
| Author: Jeff Howden |
| Published: 9/16/07 |
| Version: 1.0 |
| Ext Version: 2.0 |
| License: LGPL |
| Demo Link: View Demo |
| Forum Post: No Forum |
This Extension is a port of the work of Erik Giberti to ExtJS along with numerous enhancements and bug fixes.
Sorry to post this here but since there isnt a forum post it seemed logical to add this comment here. When I used this extention in my AIR application I needed to use
var id = new Ext.ux.UUID().id;
instead of
var id = new Ext.ux.UUID();
as the docs say since under AIR the constructor returned an object that had the string id as an element.
When I use var id = new Ext.ux.UUID(); in a browser (FF3, IE7, Opera9) all works properly.
FYI. Murray