I'm trying to populate a domain class across several steps. I'm having trouble "merging" the new params into the existing flow variable. Below you will see how i'm currently doing it (ie individually setting the domain class fields from the params object).

Is there a better way to do this?

class UserController {
    def scaffold = User

    def index = {
        redirect(action:'registration')
    }
    def registrationFlow = {
        register1 {
            on("continue") {
                transient user = new User(params)
                flow.user = user
                if(!user.validate(['loginName', 'password'])) {
                    return error()
                }
            }.to "register2"
        }
        register2 {
            on("register") {
                transient user = flow.user;
                //TODO: is there a better way to merge the flow.user with the params?
                user.firstName = params.firstName;
                user.lastName = params.lastName;
                user.preferredEmail = params.preferredEmail;
                if(!user.validate()) {
                    return error()
                }
            }.to "registerFinal"
            on("return").to "register1"
        }
        registerFinal ()
    }
}
link|improve this question

75% accept rate
feedback

1 Answer

up vote 0 down vote accepted

You could define an array of allowed fields per page and restrict to these field name by using binddata:

def validFieldsRegister2 = ["firstName", "lastName", "prefferedEmail"]
bindData(user, params,  [include: validFieldsRegister2])
link|improve this answer
Nice.. that worked. – mlathe Dec 6 '10 at 22:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.