Top "Gsp" questions

Groovy Server Pages (GSP) is a presentation language for web applications, similar to JSP.

Grails - Set "disabled" attribute name and value in GSP

I´m trying to do this without success: <g:textField title="${title}" ${disabled} /> I want to apply a …

grails taglib gsp html setattribute
How to prevent Grails from caching old versions of gsp file?

I am making modifications to /grails-app/views/index.gsp. When I save the file and refresh http://localhost:8080/index.gsp …

grails gsp
Difference between view and template in Grails

In a Grails app, I am trying to figure out when to use a view and when to use a …

grails gsp
How to call a Grails service in a view?

Simple question : I have a service class (let's say helpersService) and a method def constructURI(params). How can I call …

grails service view gsp
Get checkbox value from grails controller

I have a grails project where I need to select the fields that I want to delete and when I …

javascript html grails groovy gsp
How to send grails <g:link> params as POST

In my application when I use <g:link params=[:] /> The params are shown in the URL which I …

grails gsp
Grails g:select no selection

I have the following combobox: <g:select name="ticketType" from="${app.domain.enums.TicketType?.values()}" keys="${app.domain.enums.…

grails enums gsp
Is it possible to work with GSP (groovy server pages) without the whole grails stuff?

I'd just like to play a little bit with groovy I was thinking about developing my own-tiny web framework, something …

grails groovy installation gsp
Correctly pass a Groovy list to Javascript code in GSP

I'm making a web application with Grails. I've got a list with data that must be included on JavaScript to …

javascript grails groovy gsp
How to know if the user is logged in (in the GSP)

I have index.gsp that presents a page. In that page there is a button to register, and a button …

grails spring-security gsp