i install templates in grails 3 and files are in src/main/templates/scaffoldind works fine but use tag
<f:all bean="${propertyName}"/>
I need a bootsrap twitter class on all inputs and f:all tag do not allow this function, so i need replace tag with individual fields, something like:
<%
props.each{
%>
<f:field bean="${propertyName}" property="${it.name}">
<g:textField name="${it.name}" value="${propertyName}?.${it.name}" class="form-control" />
</f:field>
...
<%
}
%>
I found this article http://www.jakusys.de/blog/2008/12/grails-scaffolding-in-depth/ but is for grails 2 not grails 3, some solution for replace f:all tag for normal inputs or add class "form-control" to all f:all inputs