Tagged Questions
0
votes
2answers
47 views
How to iterate over object list in reverse order in Grails?
From a list of GORM database objects that are ordered desc in my user domain model I want to order them asc (i.e., in reverse order in the view). For example to get the latest books of a user from the ...
0
votes
1answer
51 views
Grails : Difference between \${} and ${}
Can someone tell me the difference between :
<g:if test="${foo.bar}">
and
<g:if test="\${foo.bar}">
A real exemple of the use of "\" before the "$" is :
<g:if ...
0
votes
2answers
73 views
Grails GSP outer templates with inner content?
Is there a way in Grails GSP to replace the following
<tmpl:/templates/header />
<!-- tmpl namespace call is equivalent to <g:render template="/templates/header" /> -->
<!-- ...
1
vote
0answers
62 views
How do i invoke GSP file in framset tag
I have three groovy server pages and i want display thier content within frameset tag.
<frameset rows="100%,*" onload="init()" onunload="terminate()">
<frame id="DisplayFrame1" ...
0
votes
2answers
144 views
Grails g:javascript tag with query string generates error
When I create a tag <g:javascript src="highcharts/highcharts.js?v=255" /> i get the error:
I can't work out the type of /tools/js/highcharts/highcharts.js?v=205 with type [text/javascript]. ...
0
votes
1answer
70 views
Parameter returned as a Groovy String instead of the Object
I have a custom taglib. I am going to pass the result of the taglib into the g:render taglib. One of the parameters is an Asset object. If I call the taglib by itself it works fine. The parameter ...
0
votes
0answers
166 views
How to display different flash.message in different style in GSP page
I have to display different messages using flash.message, some of them have to be in different color, So How to distinguish the flash.message and display them in different color in GSP
1
vote
0answers
154 views
After upgrade Grails 2.1 very slow to compile gsps on Mac Os X (Resources/Less plugin)
We've notice that our stack is very slow in compiling gsp files after recently upgrading from 1.37 -> 2.1. It seems very intermittent - if I restart my Mac and start up my stack - page loading is fine ...
0
votes
1answer
203 views
Grails: fields-1.2 plugin unable to read datamodel properties
DATAMODEL
package com.foo.bar.baz.model
class Customer {
Integer id
String firstName
String lastName
.....
}
GSP
....
<f:with bean="Customer">
<f:field ...
0
votes
1answer
613 views
grailsApplication.controllerClasses filter in gsp
I search grailsApplication.controllerClasses filter in stackoverflow,and I follow that right answer.
I write codes like that.
<g:each var="c" ...
0
votes
1answer
450 views
Unclosed GSP expression in grails 2.0.3 although it's closed
I created this grails view (create.gsp) for my event Instance but after calling /event/create i get the following error message (stacktrace):
Line | Method
->> 19 | runTask in ...
0
votes
1answer
1k views
using <g:select> grails
I am using a to display list of profilenames.
<g:select name="ProfileSelector" from='${ProfileList?.profileName}' id='ProfileSelect' noSelection="['null':' SELECT VT']" disabled="true" />
So ...
1
vote
1answer
221 views
how do i parse a array list of errors and display it as validation errors
Hi parse a arraylist of validation errors and diaply that. I have a arraylist
[passwordinsufficientuniquechar, passwordmaxrepeat, passwordinsufficientuniqueno, passwordnotenoughnumbers]
and i have ...