Hi,
I'm using auth.signature and db.my_table._enable_record_versioning()
to enable record versioning on a table.
db.define_table('mytable',
Field('staffid','string'),
Field('date','datetime',requires=IS_DATETIME(format='%Y-%m-%d
%H:%M:%S'), default=request.now),
Field('comment','string'),
auth.signature
)
db.mytable._enable_record_versioning()
This works great. I can delete or modify records and I have a full
historical record in mytable_archive.
I can see all the details with the appadmin function, but I haven't
been able to figure out how to display this info with SQLFORM.grid
I thought I could disable the common_filter with:
db.mytable._common_filter = None
but this didn't work.
Any pointers?
--