Tagged Questions
Groovy Server Pages (GSP) are groovy templates for rendering html in the ASP/ERB style.
19
votes
3answers
6k views
Are there any good tutorials for using sitemesh in a grails application?
I'm a pretty experienced Grails developer, but most of my experience has been with using grails for serving up JSON/XML to a flex app and some relatively simple HTML websites.
I've been diving deeper ...
13
votes
2answers
2k 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 to write an UI ...
10
votes
3answers
423 views
Text field validation Using Jquery
I have 5 text field in 5 rows like this..
<div class="dt_distance_slab">
<g:textField class ="number distanceSlab1" name="distanceSlabCost1" id = "distanceSlabCost1" value=""/>
...
8
votes
5answers
1k 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 problems regarding the gsp ...
7
votes
2answers
3k views
Identifying ajax request or browser request in grails controller
I am developing a grails application which uses lot of ajax.If the request is ajax call then it should give response(this part is working), however if I type in the URL in the browser it should take ...
6
votes
3answers
2k 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 set ...
6
votes
3answers
7k views
Defining default sort-order in Grails/GORM
Let's say I have definied a User object using GORM. Each user can have zero or more Login:s. Each Login has a timestamp. When retrieving user.logins I want the logins to be sorted based on the value ...
6
votes
4answers
3k views
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 very simple and manageable...
So i'd like tou use GSP pages whtout having to ...
5
votes
4answers
5k 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: ${person.name}"
}
...
4
votes
2answers
3k views
Problem calling grails service from gsp
how can I invoke a service directly from a view ? I'm trying with ${my.domain.service.method} but it complains it can't find the property. And no, I don't want to use a controller because the view is ...
4
votes
2answers
3k views
Why use <g:textField /> in Grails?
What is the reason to use g:textField in Grails if you're already familiar with standard HTML form tags?
If I understand correctly the following two markup alternatives are equivalent:
<input ...
4
votes
3answers
744 views
Mailing Exception logs in a live Grails webapp
I'd like my Grails web-app to send an e-mail for each exception that reaches the end-user.
Basically I'm looking for a elegant way to achieve something equivalent to:
try {
// ... all ...
3
votes
3answers
206 views
Grails GSP Compilation?
When you compile a grails war, I understand that the .groovy code is compiled in to bytecode class files, but I don't understand how the container (say, tomcat), knows how to compile the GSPs when ...
3
votes
2answers
569 views
Grails/AJAX: Updating an arbitrary region in the page using g:submitToRemote
In a GSP (Groovy Server Page), I'm using <g:submitToRemote update="..."> to update a <div> after the server-side call.
According to the tag's documentation and other sources on the web, ...
3
votes
3answers
541 views
Grails interferes with jquery-tmpl syntax
The jQuery templates plug-in uses ${foo} syntax (example in jquery.tmpl doc):
$.tmpl( "<li>${Name}</li>", myData )
But Grails also uses it (example in Grails doc):
<body>
Hello ...
3
votes
1answer
356 views
Grails: Getting current View name from within a Taglib
Is there any way too find out the current view (or gsp file) that is being executed?
RequestURI doesn't work due to URL Mappings and forwards.
I'm trying to retrieve resources dynamically based on ...
3
votes
1answer
284 views
GSP rendering programatically
Suppose I have a gsp snippet stored in my database. How do I programatically merge it with a data model to produce a string.
3
votes
2answers
944 views
How does one make a Grails application designer friendly without the need to re-deploy after a change to the view?
It has been a long while since I have really worked with J2EE so please excuse my ignorance. My recent engagement in a Grails project has peaked my interest in Java once more and especially in Grails ...
3
votes
2answers
462 views
Grails interprets and closes HTML meta tag
In my Grails GSP file I'm using the HTML meta tag:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The problem is that Grails closes this tag and renders it as:
<meta ...
3
votes
1answer
148 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 add a second 'class' ...
3
votes
1answer
2k views
GSP g:select option default selection
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.age" from="${18..65}" ...
3
votes
4answers
3k views
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%3A8080/index.gsp in Firefox, I am getting an old version of the file.
Is there a way to ...
3
votes
2answers
327 views
Help-balloons in Grails
I am using the help-balloons plugin
I would like to use it parametrized. I mean, the messages should come from a properties file. In the documentation appears the following:
<g:helpBalloon ...
3
votes
1answer
271 views
making download option in grails [closed]
Possible Duplicate:
Grails File Download
I am in the training of web developement.I want make a page which shows all the files in the D://downloads directory.I made that part in grails.If i ...
2
votes
2answers
30 views
Using the Grails2 resource Plugin, how do I prevent escaping in the r:img tag when including arguments in javascript?
This:
<r:img uri="${it.iconPath}" onclick="goOpenIt('${it.url}')"/>
becomes this:
<img src="/myapp/static/images/icon_32.png" onclick="goOpenIt('http://yahoo.com')" />
...
2
votes
0answers
72 views
How to create GSP taglib without Grails
We can use GSP without Grails, just mapping servlet groovy.servlet.TemplateServlet.
And what about TagLibs?
Here are docs about using TagLibs with Grails - we should just add class to ...
2
votes
1answer
126 views
Using multiple GSP templates/skins with Grails multi-tenant-core plug-in?
I have an application that uses the grails multi-tenant-core plug-in to host multiple versions of a site. I want to be able to create custom GSPs for each site beyond what simple skinning will allow ...
2
votes
1answer
311 views
Grails iterating in gsp vs. accessing Map elements
Full context: I'm trying to process multiple files using a grails Application. The code I will display comes from the post-processing page where it gives information about the files processed.
My ...
2
votes
1answer
148 views
Use JSTL tags in GSP
I'm trying to use the c:url JSTL tag in a GSP. I've added the following declaration to the top of the GSP's layout:
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
I've also ...
2
votes
4answers
191 views
In a grails gsp template, how can I use a server side comment without sitemesh throwing an error?
When I use a standard jsp comment block in a gsp template
<%-- some server-side comment --%>
, sitemesh throws an 'unexpected token' error. Is there another comment syntax I can use?
2
votes
1answer
259 views
How to assign a GSP variable in a Grails template body()?
In my Grails 1.3.7 app, I'd like to use a template to factor out surrounding HTML from views. But, GSP variable assignment isn't working in the contained body(). How can I do something like the ...
2
votes
2answers
412 views
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 disabled attribute, ONLY if the ${disabled} variable is TRUE.
I don't want to use ...
2
votes
2answers
103 views
Oracle SQL Syntax: With clause
I'm currently using the Java Version of General SQL Parser for Oracle for some relatively complex Oracle SQL Queries.
As in my case I have no access to any Oracle DB but only have the SQL statements ...
2
votes
2answers
276 views
Variable not working in a GSP Tag, but working in normal Text
I want to give the logged in User the Possibility to edit his User account with a Quick Link.
For this I created a Link using the correct GSP Tag, and I want to pass the User Id from the Spring ...
2
votes
4answers
350 views
How to prevent direct access to *.gsp pages in Grails
Could anyone advise a feasible solution to prevent direct access to *.gsp pages on Grails?
After reviewing intercepting '/**.gsp', I found it is impossible to use that as it not only filters out ...
2
votes
1answer
426 views
How to externalize GSP mail templates with Grails?
When emails are rendered from templates, the templates are looked up in "grails_app/views":
mailService.sendMail {
from sender
to recepient.email
subject "Don't forget"
body (view: ...
2
votes
2answers
700 views
What does the question mark mean in GSP/Grails?
I saw this in my generated GSP pages. What does the ? mean?
<g:textField name="name" value="${phoneInstance?.name}" />
2
votes
1answer
867 views
Groovy GSP <g:if>
This has been driving me crazy for hours and its probably very obvious to someone ...
Can anyone see why this is printing out even though its reporting as being false?
<g:if test="${className == ...
2
votes
1answer
156 views
Grails error only on Tomcat server; not reproducible locally: Error executing tag <g:link>: object is not an instance of declaring class
I've got a weird bug on the live server. It happens only on a specific action (a search). I can't reproduce it locally (where I run the code using grails run-app), and I can't reproduce it on the test ...
2
votes
1answer
1k views
Grails: use controller from index.gsp
i am new to grails and i want to use a method from a specific controller in my index.gsp
In Index.gsp i tried
<g:each in="${MyController.myList}" var="c">
<p>${c.name}</p>
...
2
votes
1answer
352 views
Grails actions getting called twice. Help!
I'm writing a grails app and running into a strange problem. When clicking the submit button on a page, the associated action gets called twice in rapid succession. This causes everything to break ...
2
votes
1answer
361 views
grails + get the next value in g:each
I have a list of checkboxes like this:
<g:each in="${mylist}" var = "item" >
<tr>
<td colspan="2"><g:checkBox value="${dimension.id}" name="${item.id}"/> - ...
2
votes
1answer
145 views
Is there a way to do gsp partials rather than tag libraries?
One of the things I liked about freemarker is that you can quickly create new macros that encapsulate complex html to make the pages smaller and more concise. Do I have to make tag libraries to do the ...
2
votes
1answer
790 views
How To Implement Adding An Extra Parameter in Grails Pagination?
I have a page/gsp that displays 3 different classes.
This means that I need to add extra parameters to the pagination links.
currently the link auto generated by default pagination tag in grails ...
2
votes
2answers
2k views
Rendering HTML files in Grails
I've looked around but could not find a way of simply including or rendering *.html files in Grails. My application needs to g.render or <g:render> templates which are delivered as html files. ...
2
votes
2answers
516 views
link directly to GSP
In a GSP, is it possible to create a direct link to another GSP? I know I can use:
<g:createLink controller="user" action="foo"/>
and in UserController define the foo action to just show the ...
2
votes
1answer
869 views
Adding search/filter to a scaffolded list.gsp
I've been looking in some of the latest Grails books and many open source projects for samples and best practices for adding search/filter functionality to scaffolded list.gsp:s, eg making it work ...
2
votes
1answer
1k views
Why does grails add a hidden checkbox to a form - and what does it do with it?
I have a checkbox on my GSP page as follows (which was stolen directly from the scaffolded "create" code for my domain object)...
<tr class="prop">
<td valign="top" class="name">
...
2
votes
1answer
220 views
Does anyone have a TextPad syn file for GSP?
I am looking for a syntax hilighting file for Textpad which hilights the Groovy g namespace. I have been trying to build one myself and can't quite figure out how to do it - or whether it is possible ...
2
votes
1answer
1k views
Grails GSP <g:set> tag set as integer?
Using Grails' GSP <g:set> tag, is it possible to specify the type of the variable? I want to declare an integer variable, but <g:set> always declares a sting. For example:
<g:set ...