Version: Isomorphic SmartClient/SmartGWT Framework (v13.0p_2023-10-12/Enterprise Deployment 2023-10-12)
I'm trying to use the automatic auditing feature. I have a SQL datasource where I added audit="true":
The audit table is working fine, changes in the original datasource are being added to the audit table. When I try to query from the audit table, I'm using:
which is returning null. I'm following this guide: https://smartclient.com/smartgwtee/showcase/#auditing
I don't see anything else declared to query the audit table. Is there something I'm missing?
Thanks!
I'm trying to use the automatic auditing feature. I have a SQL datasource where I added audit="true":
Code:
<DataSource ID="Customer" serverType="sql" tableName="customer" audit="true">
Code:
DataSource.get("audit_Customer")
I don't see anything else declared to query the audit table. Is there something I'm missing?
Thanks!
Comment