fields icon indicating copy to clipboard operation
fields copied to clipboard

using except to show id and dateCreated as per docs does not seem to work.

Open nutmix opened this issue 6 years ago • 0 comments

The fields documentation says this:

// Include id, lastUpdated, dateCreated
<f:table collection="personList" except="[]]"/>

Firstly, this seems to be a typo. Should it be "[]"?

       <f:display bean="transaction" except="[]]"/>

gives a compilation error.

       <f:display bean="transaction" except="[]"/>

does not show the id and dateCreated. Nor does this:

       <f:display bean="transaction" except=""/>

The only way i can find to show the id and dateCreated is to hard code every field in the "properties" parameter, which defeats the object.

I am guessing that this is either a bug, or perhaps the documentation is not correct?

nutmix avatar Mar 05 '19 20:03 nutmix