fields
fields copied to clipboard
a spiritual successor to the bean-fields plugin
Fix for issue #218
When we configure the noSelection parameter, it gets ignored by the tag when setting required to false. It's basically this line of code (that's everywhere in the FormFieldsTagLib.groovy): `if (!model.required)...
Following the work done on #257 You would except to be able to do something like this: ` ` and see id, dateCreated, and dateUpdated Furthermore, I believe you would...
I suggest moving the grails-fields-plugin to The Grails Plugin Collective (https://github.com/gpc) Reasons: * There is already a build process using GitHub actions. * The GPC is already home to several...
I wanted to make a field template that has pre-encoded HTML: __fields/contract/contractTerms/displayWidget.gsp:_ `${raw(value)}` value is expected to contain HTML. However, raw() doesn't work inside a template. I put this in...
If you have a domain object with this.. ``` static mapping = { id generator: 'assigned' } ``` It would be really great if `
If I have a field in my domain class: `Long myField` and that field has a value of 1000000. It ends up generating this HTML: `` Those commas mean that...
Please consider supporting for java.time.Instant, java.time.LocalTime, java.time.LocalDateTime, java.time.LocalDate, java.time.ZonedDateTime, java.time.OffsetDateTime.
I'm having a hard time describing this, but basically in the index view on any table in my project, if I click on the column heading to sort fields, things...
It is currently possible to override the default [_table.gsp](https://github.com/grails-fields-plugin/grails-fields/blob/master/grails-app/views/templates/_fields/_table.gsp) template but not the [_list.gsp](https://github.com/grails-fields-plugin/grails-fields/blob/master/grails-app/views/templates/_fields/_list.gsp) template. Because of this I am forced to avoid scaffolding in a lot of situations that...