I have a table:
db.define_table('mytable', Field('name', 'string'), Field('is_active', 'boolean', writable=False, readable=False, default=True), format='%(name)s')
for which I have enabled record versioning. Later I create a grid for mytable_archive. This grid has a current_record column which shows me the name of the record thanks to the format I specified early, but if I delete this record (web2py sets the is_active field to false) my grid don't shows me the format for my current_record in the format I specified early, it only shows the id. I know that the record isn't actually deleted, then why my grid shows me only this record id and not the name?
Sorry for my english and thanks in advance for any reponse.