Changes between Version 6 and Version 7 of DeveloperGuidelinesS3Framework
- Timestamp:
- 01/18/09 21:19:33 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelinesS3Framework
v6 v7 76 76 Form field can be made to use a SELECT dropdown by setting the field as a lookup to another table...linked to the 'id' field to allow [wiki:DeveloperGuidelinesDatabaseSynchronization Database Synchronization], but displaying a more user-friendly field (such as 'name'): 77 77 {{{ 78 SQLField('field',d n.othertable),78 SQLField('field',db.othertable), 79 79 80 80 db.table.field.requires=IS_NULL_OR(IS_IN_DB(db,'othertable.id','othertable.name'))