1
vote
1answer
19 views
Adding a class to html element conditionally with grails tags
With tags, you can do this in a gsp:
<g:if test="${someBean?.aCondition}">
<div class="aSection">
...
</div>
</g:if>
What I really want to do is ad …
2
votes
3answers
80 views
Overriding grails.views.default.codec=’html’ config back to ‘none’
If I leave grails.views.default.code='none' in the grails Config.groovy, it's up to me to HTML encode my expressions explicitly in the GSP files: ${myValue?.encodeAsHTML()}.
If I …
2
votes
1answer
49 views
Why doesn’t grails.views.default.codec default to “html”?
The Grails Config.groovy setting grails.views.default.codec specifies the default codec used to encode data within ${...} in Grails views.
This config setting can take any of the …
0
votes
1answer
143 views
How to implement openID using openid4java in GSP
How to build openID ReturnURL in gsp??
Define a ReturnURL
This is the endpoint where your webapp will receive and process the authentication responses from the OpenID Provider.
…
3
votes
2answers
87 views
Grails: Templates vs TagLibs.
In Grails, there are two mechanisms for modularity in the view layers : template and taglib.
While I am writing my own Grail app, I am often facing the same question when I need t …
0
votes
2answers
45 views
Why doesn’t .collect() work in the following GString?
This works as expected in a GSP-page:
<td>${Foo.findAllByBar(bar)}</td>
But when adding a collect statement the code breaks ..
<td>${Foo.findAllByBar(bar).col …
0
votes
1answer
26 views
how to debug a gsp page? (no grails, just gsp)
I've tried with netbeans and eclipse, with no luck... (coudn't try IntelliJ idea)
I gave a quick look ant the code
http://kickjava.com/src/groovy/servlet/TemplateServlet.java.htm …
1
vote
1answer
45 views
GSP g:select option default selection
Hi guys,
is there any possiblity to select a option field by default in gsp g:select tag?
I only saw the "noSelection" parameter in the documentation.
<g:select name="user.ag …
0
votes
1answer
26 views
Grails - Testing for the first element in a set using gsp each
Does anyone know how to test for the first member and last member in a gsp loop?
Here's my jsp code:
<c:forEach items='${aSet}' var='elem' varStatus="loop">
<c:if tes …
0
votes
0answers
38 views
<g:SortableColumn > tag shows different behavior on Firefox browser.
I am using on my table to sort the values. but it is causing wrapping up the column header on firefox. Its work fine on IE.
can anyone suggest some solution for this?
using grai …
0
votes
1answer
77 views
How to configure and retrieve the value from a g:select in Grails?
I have a g:select in my view that displays a list of products:
<g:form name="addproductform" action="saveProductToInventory" method="post">
<g:select from="${products …
1
vote
3answers
187 views
Grails “render” renders the template
In my Grails controller I'm responding to an AJAX call and using render to return the text:
def ajaxRandomPersonName = {
def person = get a random person ...
render "Name: …
3
votes
3answers
440 views
Dreamweaver + Grails
Has anybody tried doing GSP design with Adobe Dreamweaver CS4? It has support for JSPs, but it doesn't recognize the gsp extension, and even if it did I think there would be proble …
0
votes
1answer
57 views
Grails GSP doesn’t generate intended HTML under Geronimo
When running my Grails 1.1-M2 app as a WAR under Geronimo 2.1.4 (jetty6, javaee5), the HTML generated from the GSPs do not include my dynamic content.
Specifically, this GSP snipp …
0
votes
1answer
121 views
GSP taglib import
I'm trying to use GSP outside grails and ran to my first problem.
I cannot seem to do a taglib import in my GSPs.
Given
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/js …
