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([], ...
4
votes
1answer
1k views
Grails min constraint for date validation
I am a newbie in grails and groovy. I have a Project domain-class with start and end date. I want to put in a constraint specifying that the end date needs to be greater than the start date(and then ...
4
votes
2answers
496 views
Grails client side validation
How do you (if you) manage client side validation with grails ? Do you use a plugin or do you mirror your constraints using a javascript framework ?
Cheers
3
votes
1answer
156 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 = { ...
3
votes
2answers
316 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 ...
3
votes
2answers
936 views
parameterized Grails validation messages
In the messages.properties file in a Grails application I've seen examples of validation messages such as:
User.password.size=Size of bar must be between {0} and {1}
which applies to
class User {
...
2
votes
2answers
129 views
Grails: can I make a validator apply to create only (not update/edit)
I have a domain class that needs to have a date after the day it is created in one of its fields.
class myClass {
Date startDate
String iAmGonnaChangeThisInSeveralDays
static constraints = {
...
2
votes
3answers
1k views
Grails custom validator for domain class
I have a restriction so there could be no more than
ConfigurationHolder.config.support.reminder.web.person.max object stored.
I didn't find how to add a validator which doesn't relate on particular ...
2
votes
1answer
238 views
Custom Grails validation
I would like to check to make sure two fields are not equal and one is greater then the other. Say yearBorn and yearMarried. They cannot be equal and yearMarried must be greater then yearBorn.
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 ...
2
votes
2answers
1k views
Grails domain class constraints for relation between fields
I need to write Domain class constraint in Grails which says that one integer field must be greater or equal than the other.
When I write the code like this:
class MyDomain {
String title
int ...
2
votes
1answer
2k views
Grails validation of a list objects
I'm trying to get grails to validate the contents of a List of objects, might be easier if I show the code first:
class Item {
Contact recipient = new Contact()
List extraRecipients = []
...
1
vote
1answer
274 views
Grails domain class: unique constraint for multiple columns
Suppose a simple Grails domain class:
class Account {
String countryId;
String userName;
String password;
static constraints = {
...???...
}
}
It is required that ...
1
vote
1answer
39 views
Within a Tab I have two domains
I'm new to grails, so I'm really sorry for asking something like this.
I have 3 Classes,
Persona which extends to personaFisica and personaJuridica
I've created a GSP with a tab and two submit ...
1
vote
1answer
193 views
Grails get session variable from domain validator
Im sure this is a common scenario, but I haven't found any answers. I have a session-scoped variable that holds the currently signed in user and I need to perform conditional validation by way of a ...
1
vote
1answer
113 views
Grails: Rollback associations done by data binding in a service
Given the following two domain classes:
class Book {
String title
static hasMany = [authors: Author]
static belongsTo = Author
static constraints = {
title(nullable: false)
...
1
vote
1answer
235 views
How can I override the default error message in Grails?
I have a Person object with a lastName field. The lastName field cannot be blank. When the user submits a form blank value in the lastName field, the error message that the user sees is:
Property ...
1
vote
1answer
377 views
What is the connection between validate() and hasErrors()
This question comes from the problem of another question of mine. In that question, I come across a situation that hasErrors() function doesn't work for non-persistent domain class, even after all the ...
1
vote
1answer
218 views
Getting Stack Overflow when including query in grails validator
altEmailAddress(blank: true, nullable: true, validator: {
if (it == null || it == '') {
return true
} else {
return (User.countByEmailAddress(it) > 0 && ...
1
vote
3answers
489 views
Typemismatch with I18N Label instead of Attribute Name
My message.properties contains this by default:
typeMismatch.java.lang.Double=Property {0} must be a valid number
Placeholder {0} is replaced by the Attribute Name. I want to use the Label that is ...
1
vote
1answer
737 views
Dependency Injection In Grails Domain Controllers
I'm trying to create a a custom constraint. I've put the logic in a service:
class RegExpManagerService {
boolean transactional = false
def messageSource
def ...
0
votes
1answer
28 views
Validator with grails : Failed to create the user
I have this:
class Usuario {
String username
String password
String passwordDos
String nombre
String apellidoPaterno
String apellidoMaterno
...
0
votes
1answer
53 views
Grails Command Object nullable constraint
I recently upgraded a 1.3.6 application to Grails2. My test cases have started failing
Here is the scenario, I have a command object and a constraint. When the request hits the action, without the ...
0
votes
1answer
55 views
Grails URL validation
Why Grails see URLs without http:// (like www.google.com) as invalid?
Only http://google.com and http://www.google.com are ok.
Is there any way to fix that ?
0
votes
2answers
52 views
How to access command objects from filter and is it possible at all?
I often write something like:
def myAction{ MyActionCommand cmd ->
if( cmd.hasErrors() ){
return render(status:HttpServletResponse.SC_BAD_REQUEST );
}else{
// ...
0
votes
1answer
104 views
Passing arguments to Grails custom validator
http://www.grails.org/doc/latest/ref/Constraints/validator.html
I have a project where I would like users to log in with a temporary password I provide them via SMS message. Thus, on login I would ...
0
votes
1answer
141 views
Grails validation fails after interchanging unique attribute values
Grails validation fails after interchanging unique attribute values
Hi, I am trying to create an interface where users can create some custom enumeration with translations for different languages. ...
0
votes
1answer
72 views
Grails unique test fails after interchanging attribute values
Hello I am trying to implement a simple translation list, meaning I have a values and translations to this values.
[Edit:] As this is part of my user interface and values and translations shall be ...
0
votes
2answers
72 views
How to achieve authentication using an XML users file in grails?
Being a newbie to grails, I want to learn how to authenticate users using an XML users file? For ex: A user is able to login only when the credentials(username & password) match with the one in ...
0
votes
2answers
69 views
ConversionNotSupportedException with similarly named classes
UPDATED: made some wrong assumptions about classes etc. The following occurs now when I have a 'demo' project:
I have two classes, both named 'Company'.
One is placed in ...
0
votes
2answers
104 views
Grails validation dependent on other attributes
What is the correct way to do something like this with grails:
class myDomainThing {
String description
MyOtherDomainThing otherThing
static constraints = {
...
0
votes
3answers
187 views
Grails form error handling: Binding 1:1 object mappings
I have a registration form that contains fields related to two domain objects; User and Profile. The relationship is a 1:1 mapping owned by the User domain class.
A 'register' action on the User ...
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
2answers
179 views
Grails: Property Null error
I've a domain called Modulo with some properties and a Controller with a method that create a object from model and save it, when execute save the shell show this error:
La propiedad [{0}] de la ...
0
votes
2answers
604 views
Grails validateable not work for non-persistent domain class
I followed the instruction here: http://www.grails.org/doc/latest/guide/7.%20Validation.html
and added into config.groovy:
grails.validateable.classes = [liningtest.Warm']
Then added in ...
0
votes
1answer
269 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
2answers
464 views
Grails - testing custom validator on domain class issue
I'm learning grails from Grails - getting started by Jason Rudolph book.
My domain class looks like that:
class Race {
String name;
Date startDateTime
String city
String state
Float ...
0
votes
1answer
451 views
Displaying Grails Field Errors
Does anybody know how I could get the fieldError to print out in the example below.
for each item with an error, I would like to print custom error messages that I have defined in the ...
0
votes
1answer
879 views
Grails and AJAX: Grails form validation working using ModalBox or YUI2 Dialog?
Several Grails applications, like the one I'm writing, require a /user view and /admin view that are 'dashboards', basically the user or admin lands on that page, possibly after a successful login and ...
0
votes
2answers
117 views
Interrupting grails dynamic methods
I have one grails application.In that I have one model class named Book.
From any controller if I am calling Book.list(), Book.get(id) and some other hibernate calls like save() I want to authorize ...
0
votes
1answer
733 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 ...
0
votes
1answer
879 views
Render Errors From A Service
I call a service that creates a parent and a child record. If an error happens, the service throws a RuntimeException. The RuntimeExceptionis is caught by the controller and then there there is a ...
0
votes
2answers
904 views
How To Know The Cause Of A Validation Error
The following code will throw a grails.validation.ValidationException if the save fails for some reason. But the result is a generic error. How can I know the actual cause of the error so I can report ...