If you only want to display a number I guess virtual fields is what you need. Look at

http://www.web2py.com/book/default/chapter/06?search=virtual#Virtual-Fields


Kenneth

Hi,
In addition to the records that are submitted with a SQLFORM, I want
to give each record a specific "identification" number, so that the
first record has number=1 and so on:

==from model/db.py==
db.define_table('input',
        Field('number', 'integer'),
        Field('value', 'integer'))

...My problem is that I don't know how to automatically add the number
to this form:
form = SQLFORM(db.input, fields=['value'])

Thanks in advance for help.

Reply via email to