Tagged Questions

5
votes
2answers
2k views

Grails: nested command objects

In my grails app I have an outer command object that contains a list of other command objects: public class OuterCommand { List<InnerCommand> innerCommands = ListUtils.lazyList([], ...
3
votes
2answers
317 views

custom Grails validation

Normally for a Grails domain or command class, you declare your constraints and the framework adds a validate() method that checks whether each of these constraints is valid for the current instance ...
2
votes
3answers
1k views

Grails Problem with custom error messages

I am currently trying to specify custom error messages in grails for the default constraints but so far all I get back is the default error message. I know that I have to edit the ...
0
votes
2answers
201 views

use Java class as Grails command

I have a bunch of Java classes that I would like to use as command classes in my Grails contollers. A typical example is: class Person { String name Integer age public String getName() ...
0
votes
1answer
496 views

Grails formRemote - how to avoid redirect on multi form?

I have a master controller named Screening. I have build view workflow for this controller (e.g : create, edit, list, show). On my edit view I'm using Jquery TABS (each tab get content from a ...
0
votes
1answer
270 views

Grails validation issue on multi-domain association?

I need to validate save action between 3 domains, here is relationship : User - JobProcess : one-to-many, JobProcess - Heatmap : one-to-many. User { static hasMany = [ jobs : JobProcess ] ... } ...
0
votes
1answer
734 views

Grails bindData exclude not excluding

I'm trying to use 'bindData' method and exclude one field like so: bindData(person, params, [exclude: ['responseItems']]); I thought that by listing the 'exclude' parameter, when bindData iterates ...