Changes between Initial Version and Version 1 of DeveloperGuidelines/FAQ


Ignore:
Timestamp:
05/22/10 09:52:36 (15 years ago)
Author:
Michael Howden
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/FAQ

    v1 v1  
     1DeveloperGuidelines
     2= Frequently Asked Questions =
     3
     4== Select Element for Users ==
     5By: Robby O'Connor[[BR]]
     6Date: 2010-05-21[[BR]]
     7
     8To 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
     13DeveloperGuidelines