0
votes
1answer
23 views

Problems with render Criteria as json in Grails!Find one field in a restfull service and render it

I have this code.I want to have some rows in JSON,to find it Im trying to use criteria. I want render each case as json. Example: I want the row of my table that have Name:"pepito" .if I put ...
0
votes
3answers
45 views

Cannot render blob as image in grails 2.1

I'm trying to render an uploaded image from a gsp without success. I have this to render the image.. What is wrong? //domain-class class Something { ... byte[] image } //controller def ...
0
votes
1answer
90 views

problematic results after Elastic Search upgrade

I've updated my Elastic Search from 0.19.4 to 0.20.6 and I'm not getting the desired results.. I'm doing a dynamic search after key presses and the code that was working fine before acts different ...
0
votes
0answers
18 views

page part deferred rendering

I would like to make a part of a page be shown to the user, while another part would be waiting for response of some slow external service. Is it possible in Grails? Of course, I can use Ajax. But ...
0
votes
1answer
52 views

Grails: Issue using remoteFuction and render

I am having issues using remote function updating a second g:select that is based off the selection of the first. I have tried multiple ways and would be willing to change my style to however can get ...
2
votes
1answer
92 views

Grails: Can I store GSP's outside the application?

I'm making a CMS using grails. I'd like users to be able to edit their GSP's dynamically online. For the safety of their modified GSP's, I'd like to save it somewhere else on the server, not within ...
0
votes
0answers
69 views

Grails: How to render PDFs that are stored in my project?

I managed to allow uploads into my filesystem. Now I want to be able to render them into the browser, within an iframe.
-2
votes
1answer
86 views

Time taken by “render value as JSON” in grails [closed]

How to find time taken by "render value as JSON" in grails.
0
votes
1answer
1k views

Grails g:render a template (or render a div) onClick event

I am creating a hierarchical list with expandable/ collapsible list items. When a user clicks on a list item to expand it a table pops up with some info. Right now, grails is rendering all of the ...
0
votes
2answers
468 views

Rendering XML output in Grails

I have a domain class called paymentMethods.. For REST services, I want to send paymentMethods as XML format. Using render paymentMethods as XML I can send. But I don't want to send some ...
0
votes
1answer
885 views

render data as JSON not working after grails upgrade from 1.3.4 to 2.0.3

I was using grails 1.3.4 for my project and everything was working fine until I decided to migrate my project to grails 2.0.3. The render as JSON method was working fine for me for every AJAX call ...
0
votes
1answer
578 views

grails renderpdf plugin, how does it work?

i´m trying to render PDF with renderpdf grails plugin, but their documentation is very short. i made a button in my gsp view/file <button type="button">PDF Me!</button> and ...
2
votes
2answers
504 views

g:include vs g:render

I have a question about pros and cons of g:render and g:include. In my application I have a piece of code that shows some information that have to be repeated in some gsp, what it show depends on a ...
0
votes
2answers
1k views

how to render template value depending on model param value passed?

I want to render same template on one page which should display the value depending on the param value(3 or 4). View is -- <td > <g:render template="gdxqStatusTemplate" model="[param:3]" ...
0
votes
4answers
1k views

Grails - render Map from controller via Ajax using JSON

I know this is a recurrent/classical topic but I did not found anything that helped me so far. I am trying to render a Map from my controller. This results from an Ajax request and is supposed to be ...
1
vote
2answers
444 views

Render Iusse ,Using Async startAsync() in Grails 2.0.1

using servlet 3.0 async method when we render a string it's ok,but we can not render a page. def index() { def ctx = startAsync() ctx.start { do something......... ...
4
votes
2answers
585 views

Unit testing rendered Json with JsonBuilder in Grails

Let's say I have a simple action in my controller that ends with: render(contentType: "text/json") { message = 'some text' foo = 'bar' } It renders correctly, as per the JSON builder ...
0
votes
1answer
341 views

render same response to two select box from controller

I have created cascading select as follows- <td>Reference Table:</td> <td><g:select name="tableCombo" noSelection="${['':message(code:'Select Table')]}" ...
0
votes
1answer
232 views

rendering blob content as code instead of text

I have the following code saved in the oracle database as a blob field , basically html and embedded groovy code with an sql which return some values <% import groovy.sql.Sql def ...
0
votes
2answers
504 views

Ajax and grails render

I'm trying to read XML with AJAX, all the data are took from a well formed XML file and then are sended to client page through AJAX. But xmlhttp.responseXML always remains unusable. Here's my ...
1
vote
3answers
5k views

Grails render view of different controller

My question is similar to this following post Rails: Render a view of another controller I have a TestConfigController my question is what can I do in case validation fails and I want to render ...
1
vote
2answers
231 views

how to show saved status on same page where update called in GRAILS

New to Grails and this may be simple problem. I am trying to save some values to database, so I created a simple form with two text fields and a button in GSP (info.gsp). When button (update) is ...
0
votes
1answer
107 views

UrlMapping causing method not to render different view than default

class SearchController { def list = { List<Product> productsList = productRepository.findProductBySearchPhrase(params.searchPhrase) render(view: "/product/list", model: [products: ...
0
votes
1answer
261 views

Change URL after submiting form but while rendering view in Grails

Hello there Grails community wherever you are! I'm facing a cool problem... or idea even. And I need some help. What I try to do is this: Submit search form with a phrase. Let's say 'pants'. Value ...
0
votes
2answers
279 views

grails rest render and return

Is there any way to to this: def getChannelListJSON = { def results = Channel2.list() def t1 = System.currentTimeMillis() render(contentType:"text/json") { ...
0
votes
1answer
514 views

Grails createCriteria and executeQuery

let's say i have this classes which are being mapped to SQLServer: class Statistic { Servicos servico int totalTime Date date static constraints = { } } class Servicos { ...
0
votes
1answer
237 views

Grails - Render a template by email

I have a controller's method which renders a template. This works fine to render the template within my .gsp view. I am also using the mail-plugin, and I would like to used the same controller's ...
4
votes
1answer
904 views

Rendering command validation errors across a redirect

I cannot render the errors from my command object. It does the job well but my .gsp view does not render the errors I raise. Here is my controller action: def handleModifyProfile2 = { ...
0
votes
3answers
993 views

Grails display gsp inside div

Hey. Imagine i have two separate gsp pages with diferent css formatting (with name conflicts between two). And i want to "display" or render one page with its ows formatation inside a div in the other ...
3
votes
4answers
2k views

grails.converters.JSON except few properties

I am using grails-1.3.2 and hbase-0.2.4. I have the following domain class: class MyClass{ String val1 String val2 String val3 //---- } class MyClassController{ def someAction = { ...
0
votes
1answer
2k views

grails controllers render errors

class Person { String name Integer age String street String email } class PersonController { def save = { def personInstance = new Person(params) ...
0
votes
1answer
334 views

Grails render page inside other

Hey. I have a gsp page with a form that i would like to put inside a div in another gsp page. Each gsp page have diferent css configuration for 'body'. Is it possible to that that using in Grails ...
1
vote
1answer
965 views

Access model and view information in grails controller integration test

Is there any way I can get what view and what has been passed as model after issuing render command in controller in integration test? Eg.: render view: 'edit', model: [profileInstance: someProfile] ...
1
vote
1answer
389 views

Grails / RenderPdf Arabic Chars

We have a grails app, in which we are using the Render Plugin to render content in .pdf. It all works fine for English, but unfortunately for Arabic (which we must render) all the charactes seem ...
1
vote
1answer
225 views

Get template rendered from controller without render yet

I want to return my response as JSON with ajax containing more atributtes instead only the template: Default: render(template:"/templates/question",model:[question: question]) ..and want something ...
1
vote
2answers
2k views

how do I test grail's controller's render method?

How do I test this: render view: "create", model: [user: user] I know how to test redirectArgs and stuff, but I can't find an example to test something like this. It seems like articles and stuff ...
3
votes
2answers
6k 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
1answer
801 views

Rendering XML response on Grails problem

I'm having problems rendering an XML file parsed via XMLSlurper to an XML variable. Below is my code. def userFile =new File("test.xml") def xml= new XmlSlurper().parse(userFile) render xml The ...
7
votes
3answers
4k views

Using g.render in a grails service

I'm trying to use g.render in a grails service, but it appears that g is not provided to services by default. Is there a way to get the templating engine to render a view in the service? I may be ...
0
votes
1answer
845 views

Cannot render form tag using 'render' in Grails Controller

Using markup with the render is not adding the form tag. I tried this with contentType "text/html", "txt/xml" and it does not work. I have this in my controller: def myTest= { ...
9
votes
4answers
6k views

Best way to pretty print XML response in grails

given this in a grails action: def xml = { rss(version: '2.0') { ... } } render(contentType: 'application/rss+xml', xml) i see this: ...