*I have the following table definition...*
*
*
*db.define_table('account',
*
*    Field('name'),*
*    Field('transfer_acc','reference account'),
*
*    )*
*
db.account.name.requires = IS_NOT_EMPTY()
*
*
db.account.transfer_acc.requires = IS_IN_DB(db,db.account.id,'%(name)s')

...Note the table contains a self referencing field.

*
*The reference field displays the referenced id in sqltable... What is best 
way to replace id with name of account? *

Reply via email to