Documentation

This commit is contained in:
Francesco 2023-10-03 11:18:47 +02:00
parent 96ece6d4b2
commit 5413c8bfa0

View File

@ -231,6 +231,7 @@ private byte[] image;
<code>@HiddenColumn
private String cardNumber;
</code>
</pre>
<p>Marks a field as hidden. This column and its values will not be shown in the list and detail view for objects of this type. If the column is nullable, it will be hidden in the create and edit forms as well (and this will result in the column always being NULL when creating/editing objects). If, instead, it's not nullable column, it will be included in the create and edit forms as it would otherwise prevent the creation of items.</p>
<p><strong>Please note that this is not meant as a security feature, </strong> but rather to hide uninformative columns that clutter the interface. In fact, since the create and edit form come pre-filled with all the information, these views <b>will</b> show the value of the hidden column (if it's not nullable).</p>