Changes between Version 6 and Version 7 of DeveloperGuidelinesS3Framework


Ignore:
Timestamp:
01/18/09 21:19:33 (16 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelinesS3Framework

    v6 v7  
    7676Form 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'):
    7777{{{
    78 SQLField('field',dn.othertable),
     78SQLField('field',db.othertable),
    7979
    8080db.table.field.requires=IS_NULL_OR(IS_IN_DB(db,'othertable.id','othertable.name'))