Changes between Initial Version and Version 1 of DeveloperGuidelines/FAQ
- Timestamp:
- 05/22/10 09:52:36 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/FAQ
v1 v1 1 DeveloperGuidelines 2 = Frequently Asked Questions = 3 4 == Select Element for Users == 5 By: Robby O'Connor[[BR]] 6 Date: 2010-05-21[[BR]] 7 8 To have a field displayed as a select element which has the names of the users in the database: 9 {{{ 10 <table>.<field>.requires = IS_NULL_OR(IS_IN_DB(db,db.auth_user.id,lambda id : shn_user_represent(db.auth_user.id))) 11 }}} 12 13 DeveloperGuidelines