Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8822009
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T05:59:34+00:00 2026-06-14T05:59:34+00:00

Is it possible to set the default value for a generated (scaffolded) State dropdown

  • 0

Is it possible to set the default value for a generated (scaffolded) State dropdown box in Grails? I am hoping that this is something I can do within either the domain class or the controller class:

class State {

    String name
    String code

    static mapping = { sort name: "asc" }

    String toString() {
        return this.name;
    }
}

class Person implements Comparable {

    String firstName
    String lastName
    State state

    String toString() {
        return this.lastName + ", " + this.firstName;
    }
}

I have tried explicitly setting String name="Pennsylvania" and String code="PA" in the State domain class with no luck. I am bootstrapping the State data in Bootstrap.groovy:

def init = { servletContext ->
    if (!State.count()) {
        new State(name: "Alabama", code:"AL").save(failOnError: true)
        new State(name: "Alaska", code:"AK").save(failOnError: true)
        new State(name: "Arizona", code:"AZ").save(failOnError: true)
        new State(name: "Arkansas", code:"AR").save(failOnError: true)
        ....
    }
}

Updated:

PersonController.groovy:

def create() {
    // [personInstance = new Person(params)]
    def personInstance = new Person(params)
    personInstance.state = new State("Pennsylvania", "PA")
    [personInstance: personInstance]
}

State.groovy:

public State(String name, String code) {
    this.name = name
    this.code = code
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T05:59:35+00:00Added an answer on June 14, 2026 at 5:59 am

    If you’re trying to set the default value of the state dropdown for the “new Person” page, then you would probably want to make the default value of Person’s ‘state’ member be the ‘Pennsylvania’ state that you create in Bootstrap.

    Actually, I think that a better way to do this would be to actually generate the PersonController, and then modify the ‘create’ closure to set the initial value of Person.state

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In mysql I can set default value for column like this: ALTER TABLE <Table>
Is it possible to write similar construction? I want to set, somehow, default value
Is it possible to set a default value for a variable argument list in
If I set a default value on a dict, is it possible to get
Possible Duplicate: How do you set a default value for a MySQL Datetime column?
Is it possible to set default values for models ? For example consider this
How can I set up a default value in my Action Filter when an
Is it possible to set a default value to some of arguments in Racket?
In Django, is it possible to set the default value of a form field
Is it possible to set default page properties value in CQ5 when you created

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.