The grails-controller tag has no wiki summary.
0
votes
1answer
15 views
Grails Class with hasMany
I have this domain class that has a one-to-many relationship as with dynamic scaffolding show below:
Domain:
package mienapp
class Announcements {
String user
String title
String ...
0
votes
0answers
44 views
get a specific row from a list in grails
I am new to grails.I need to produce a report. That is why I have written a query which returns 3 rows with 4 column. Now I need to hold each row from that list in different object.
And I have no ...
0
votes
1answer
44 views
Add custom headers to response after “render as JSON”
I am trying to add a custom HTTP header to the response of a certain set of controllers using Grails Filters:
class ApiFilters {
def filters = {
xwingFilter(uri:'/api/**') {
after = ...
-1
votes
0answers
30 views
Need some sample Grails 2.3 applications
Please provide any sample applications. I am getting exceptions in every bit of code change. Please help me by providing some sample grails 2.3 applications.
I search online, i am not able to fine ...
1
vote
3answers
79 views
How to migrate Grails 2.1 to Grails 2.3 application
I am migrating my application from Grails 2.1 to 2.3.
I am getting lot of errors after migration - I want some sample applications with Grails 2.3 and spring integration.
I did some HelloWorld sample ...
0
votes
1answer
81 views
Grails 2.3 - run-app not working
Please help me, i am getting error while running my grails app.
My application working in Grails 2.1.4.
I am using
Groovy 2.1.*
Java 1.7
Tomcat 7.0.37
I upgraded my application from Grails ...
0
votes
1answer
36 views
Cannot obtain DBObject for transient instance, save a valid instance first
Cannot obtain DBObject for transient instance, save a valid instance first
I am using MongoDb plugins in Grails 2.2.2
when i am creating a new user.. its saves but.. when i trying to edit telephone ...
0
votes
1answer
36 views
grails 2.1.0 Chained select relation
I want to make chain select box in my view page. I have country select box, and city select box. And in city domain I have country id. Now I want to show cities of a specific country when I select a ...
0
votes
1answer
36 views
How to Display Exception In Grails?
a have a problem with my code. how can i handle an error from service to my gsp? i tried it with render from service or controller, Validation error occured during call to save(): - Field error in ...
0
votes
0answers
58 views
Field error in object 'talent.CandidateProfile' on field 'core': rejected value [null];
1:declared field name as a name="db_address1"
<div class="fieldcontain ${hasErrors(bean: candidateProfileInstance, field: 'core.db_address1', 'error')} ">
<label ...
0
votes
0answers
36 views
Return list in grails
I am using grails 1.3.7. I need to create a list only with two ID. And then render it in select.For this I have tried this as following >>>
List<ProjectInfo> userProjectList = ...
0
votes
1answer
43 views
grails select is not rendering value
I want to make a select box in grails. I am using 2.1.0. I have a view page which shows a select box named class. But it does not shows any value. The list I have used in the from attribute of select ...
0
votes
0answers
50 views
Grails included controller missing javascript
I have a portal page that I'd like to compose using g:include for the component panels.
When I do this, however, the deferred resources aren't rendered. In some cases the g:javascript or r:script ...
0
votes
1answer
109 views
Grails domain get(params.id) works in Controller.show() but not Contoller.edit()
So here's an interesting one. I've got a 2.1.1 Grails application with straigt-forward domains and controller with default scaffolding. My show() method works just find and retrieves the domain object ...
0
votes
1answer
120 views
display photos in grails vs playframework
I have been doing some tests using Grails framework and now I'm trying to do something similar in playframework.
Basically, I want to display some pictures, but to hide (in order to be able to avoid ...
1
vote
1answer
43 views
Updating many instances in one view
I'm starting with Grails and I don't know how should I face the following use case.
The app is about sports results prediction, so I have in my domain "Match" and "Prediction", and I want to have one ...
0
votes
1answer
32 views
How can I list the available objects to inject in grails?
Is there a way to programatically list all available beans in the grails spring injection context? In guice I was able to do this by looking up the bindings configured in the injector.
0
votes
1answer
151 views
Populate drop down menu Grails
I am currently trying to populate a drop down menu based upon the selection in the previous drop down menu I have. For example if you click on Spring 2013 in the first drop down menu the second menu ...
1
vote
2answers
106 views
how to reset params in grails controller?
I've a reset button on my GSP to reset form fields to default values, so calling controller action upon clicking reset button and have to set params to blank and need to render same view.
I'm ...
0
votes
0answers
82 views
Grails - pass a collection of objects from form to controller
I'm working on an application where user will be able to schedule some events.
I'd like to build a dynamic view - user can add as many events at once as he wants.
I know I can pass to controller a ...
0
votes
1answer
62 views
Grails render a loading page while retrieving data
I have a web application that takes a while to load up the initial page. The main screen has a lot of data with multiple datasources, thus the load time is longer than I would like.
I would like to ...
0
votes
4answers
169 views
Grails - How to clear previous validation errors in command object?
How to clear previous validation error messages coming from Command object when user clicks on browser back button?
Here is the sample code:
def create = { UserInfoCommand cmd ->
...
0
votes
1answer
81 views
Cant use grailsApplication.getMetadata.get(“ ”) while performing unit test for controller in grails
I need a quick help for my problem as follows :
In my grails application, in the controller, I use following kind of a thing :
class SampleController {
def action1 = {
def abc = ...
0
votes
0answers
37 views
Unkown Grails error:invalid paramter, type:null, value :null
In my server log, such errors prompted:
[ 15.03.13 16:44:36.430] [http-8080-exec-1] ERROR com.xxx.security.SignUpCommand invalid paramter, type:null, value :null
Does anyone has suggestion about ...
0
votes
0answers
19 views
Grails - How Can I optimise this piece of code
Am working on the followinf piece of code:
def startNew = {
def userInstance = User.get(session.user.id)
if(userInstance.status=="inactive")
{
...
0
votes
1answer
67 views
Grails Integration Test Controller can't be re-used?
In a grails integration test, I have code that resembles this:
def ctrlA = new MyController()
... make some request that returns 'ok' ...
assert ctrlA.response.json.status == 'ok'
def ctrlB = new ...
3
votes
1answer
105 views
how to control dynamic rows coming from a form in a controller
I have a form which sends over dynamic number of rows and columns. Here is a demo on jsFiddle of how the form looks like.
I have columns of Red, Yellow, and Green and there could be dynamic number ...
0
votes
2answers
450 views
Grails REST CRUD Controller Methods
I am pretty new to Grails, though I do have a lot of experience developing webapplications using other mvc frameworks in different languages (Perl, Python, Ruby).
I am trying to understand the ...
0
votes
1answer
534 views
grails gorm executeQuery HQL inner join
I am trying to do a simple inner join using GORM's executeQuery but getting a QuerySyntaxException.....I believe my hql is ok. Here is my query
def query = Institution.executeQuery("select longName ...
4
votes
1answer
184 views
Deserialize a JSON object with support for embedded associations
Is there an easy way to deserialize a JSON string to a domain class with support of embedded association; belongsTo and hasMany
{
name: "Customer",
contact: {
name: "Contact"
}
}
class ...
0
votes
2answers
113 views
passing my “own” map from controller and render it in view
So this is my show() method in my controller with InsitutionList as a global variable but when I want to access this InsitutionList from list.gsp it is not rendering (also not giving any errors like ...
0
votes
1answer
160 views
Modify params before saving domain object
I needed a domain class that held a list of Strings. It seems fairly well-known that GORM can't handle this, so I've worked around it. At first I tried using getters and setters in the domain class, ...
4
votes
2answers
2k views
Grails 2.2.0 Support in Eclipse
I am trying to create a grails 2.2.0 project using eclipse-jee-juno. It gives me an error
Groovy compiler level expected by the project does not match workspace compiler level.
Project compiler ...
2
votes
1answer
294 views
Use username as email, Spring Security UI plugin
I'm using the Spring Security plugin, in combination with the Spring Security UI plugin.
They both work like a charm, but my problem is that I don't want my user to have a username, instead he/she ...
1
vote
1answer
94 views
dynamic schema value to DataSource.groovy
Is it possible to send dynamic values from Controller/Domain classes to DataSource.groovy?
Ex: default_schema = ${someConfig.default_schema}
Thanks in advance
0
votes
2answers
56 views
How to put the title center of pdf by using grails export plugin?
I have exported pdf by using export-plugin in grails. Now my problem is to put the title in the center of pdf. What code i need to write in the controller to align this title center?
0
votes
1answer
31 views
How to use the withCriteria results in a new withCriteria query in Grails?
Consider the first query:
def books = Book.withCriteria {
eq("category", "fiction")
}
How can I use the result of this query in the next query to get all the authors who wrote these books?
I ...
1
vote
2answers
191 views
Grail mail plugin - unable to add in multiple TO addresses?
New to grails world. I am having issues passing the comma seperated form values from a form into the 'TO' properties of the grails mail plugin. no matter what I try I can seem to get it to an array ...
0
votes
1answer
117 views
is it possible to access the view state from a webflow controller action?
i have a controller that is not on webflow but need to redirect it to a weblflow. The problem is the view I need to access is inside an action of a webflow.
here is my webflow
class ...
0
votes
1answer
579 views
Request params not getting bound to grails command object
I've upgraded to use Grails 2.1.1 from Grails 1.3.6 and some command objects which were working are no longer getting data binding from the request parameters.
I created an experimental controller to ...
0
votes
1answer
80 views
3 domains in grails, I want to access 3rd domain which is unassociated to the 2nd domain in 2nd domains view
Im stuck again. Its very frustrating coming from a ruby background.
I have 3 domains. Domain A has many domain B's. Domain A hasMany Domain C's
I want to be able to access domain C's records in ...
1
vote
1answer
72 views
Grails - 2 domains and 1 form create/update/edit issues
Having some mega frustration set in.Maybe Im trying grails too much like rails and active record.
I have 2 domains.The parent is called 'report' and the child 'category'.
The user creates a new ...
0
votes
0answers
145 views
Grails : Error while reading Reading resource xls from WEB-INF in Junit Grails
First i'm very newbie to grails and groovy.Now what i'm trying is,in controller i'm taking a resource xls from WEB-INF and export data from database table in xls sheet.For this i'm using the below ...
0
votes
0answers
85 views
can this be achieved with formRemote and one gsp?
I have create.gsp for creating domain objects. Besides normal html body and headers I have two div's. One for displaying command object errors and one for data. I want to submit the form with AJAX. ...
0
votes
2answers
125 views
MSSQL/SQL Query condition error
I have this 2 following SQL Queries on my grails controller:
def query1 = sql.rows("select abc from table_one where cond = 1")
The return result from query1 gives me [{abc=5}]
def query2 = ...
2
votes
4answers
105 views
SQL Querying Database
I have this following query
"select abc from table where val = 1"
The result i got was
[{abc=5}]
However, I need just the integer value 5 from the result instead of the array[{abc=5}].
Anyone ...
0
votes
1answer
48 views
Inserting methods 'Controllers' in 'Services'
I have a class that manages my uploaders. It makes use of the plugin file-uploader 'and complements other information and rules of my application.
I'm trying to create a service that manages some ...
1
vote
0answers
98 views
grails 2: reload of controller, break points, and shutdown
I experience some strange problems with a brand new grails 2 installation and project.
my setup:
windows 7
grails 2.1.1
intellij
problems:
when storing an entity i set a flash.message="foo"+x. ...
0
votes
4answers
394 views
Plugin missing while using ajax prototype in Grails 2?
Hello..I'm using Grails 2 and tried to implement the ajax call from gsp page to my controller..At first library prototype was missing in grails 2 i solve this using command grails install-plugin ...
0
votes
1answer
178 views
Failed to bind GSP params to a Command Object in Controller
My controller is something like this:
class UserController{
def register= {UserCommand command ->
println params
println command.dump()
// do something ..........
...


