You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
“display false” is not hiding but placing as first column
Is it really the case that display: false is causing it to be placed in the first column? I expect that if there were other items in the constraints block, the first column will be the item that is listed first in the constraints block, not necessarily one that has display: false. The order in the block is supposed to dictate the order in the view.
static constraints = { name(display:true) points(display:true) identifier(display: false) }
The table of my person view is rendered as expected. 1. is name, 2. points, 3. identifier. However, the main problem persists, the identifier column is not hidden.
I've built a small grails (3.1.4) application. I have the following domain model and am using dynamic scaffolding:
I want to hide the identifier as shown in the code. However, the column is not hidden. Instead it is shown as the first column in the table.
The text was updated successfully, but these errors were encountered: