Hi!
I wanted to know how to access audited traits from Table columns?
Can someone, kindly show me a code example?
Thanks!
Hi!
I wanted to know how to access audited traits from Table columns?
Can someone, kindly show me a code example?
Thanks!
If the question is about the Table in the UI - just add the necessary columns to the table.
.......
<groupTable id="newEntity_1sTable"
width="100%"
dataContainer="newEntity_1sDc">
<actions>
<action id="create" type="create"/>
<action id="edit" type="edit"/>
<action id="remove" type="remove"/>
</actions>
<columns>
<column id="name"/>
<column id="createdBy"/>
<column id="lastModifiedBy"/>
</columns>
.......
Thank you very much!