fields
fields copied to clipboard
[enhancement request] ability to show id and dateCreated in <f:display bean="xx"/>
You can show the id and dateCreated in <f:table collection="personList"/> by hard coding the list of fields including the ID field, e.g. <f:table collection="personList" properties="id, name, email"/>
This is useful, but it is really critical to be able to show these fields when showing the record via the show method.
Unfortunately, the same thing doesn't work for the display method. This request is to allow this to work: <f:display bean="person" properties="id, name, email"/> or, even better:
<f:display bean="person" exclude=""/>
If possible, please add the ability to show id, dateCreated and dateUpdated when "showing" a bean.