Posts by Marco Araujo • 16 points
3 posts
-
0
votes4
answers277
viewsA: Start grails application
Good first Voce needs some variables installed First the Java Home https://docs.oracle.com/cd/E19182-01/820-7851/inst_cli_jdk_javahome_t/ Then the Grails Home…
-
0
votes1
answer40
viewsA: i18n grails and jquery with different languages
Well, I’ll do it this way. In my layout I put the following tag in HEADER <g:set var="lang" value="${session.'org.springframework.web.servlet.i18n.SessionLocaleResolver.LOCALE'}"/> And in all…
-
0
votes2
answers220
viewsA: #GRAILS gsp search filter not passing parameters to controller
Hello. On your Voce controller you are using an instance Invoice that you are not using in your form. def searchByFilter(){ respond Invoice.getInvoicesByFilter.list(params), view: "index" } And on…