webmcp
view framework/env/ui/create_unique_id.lua @ 55:594a85118cb7
Bugfix in <db_selector>:add_from(...) and <db_selector>:left_join(...)
author | jbe |
---|---|
date | Sun Dec 18 21:14:43 2011 +0100 (2011-12-18) |
parents | 9fdfb27f8e67 |
children |
line source
1 --[[--
2 unique_id = -- unique string to be used as an id in the DOM tree
3 ui.create_unique_id()
5 This function returns a unique string to be used as an id in the DOM tree for elements.
7 --]]--
9 function ui.create_unique_id()
10 return "unique_" .. multirand.string(32, "bcdfghjklmnpqrstvwxyz")
11 end