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 6333167
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T18:24:30+00:00 2026-05-24T18:24:30+00:00

This is on Grails! This is a very basic thing which apperatnly I am

  • 0

This is on Grails!
This is a very basic thing which apperatnly I am failing to understand.

I have this in my index.gsp

<g:form name="testForm" url="[controller:'test',action:'index']">
   <g:textField name="Input A" value="${Input1}">  </g:textField>
   <g:textField name="Input B" value="${Input2}"> </g:textField> 
</g:form>

I also have this in my TestController class:

class TestController {

    def index = {
        def Input1
        def Input2
    }
}

I want to get the two inputs that the user enters on the webpage and save them to the appropriate fields (Input1, Input2) on the controller.

How do I go about it?

thanks

  • 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-05-24T18:24:31+00:00Added an answer on May 24, 2026 at 6:24 pm

    You can write your form like this:

    <g:form name="testForm" controller="test" action="index">
     <g:textField name="Input1" value="${Input1}">  </g:textField>
     <g:textField name="Input2" value="${Input2}"> </g:textField> 
     <g:actionSubmit value="Send to controller"  action="index"/>
    </g:form>
    

    Note that in this case,

    1. the controller parameter for the g:form tag is not needed, it is used by convention
    2. Action may also probably be removed depending on your route (and grails version), but most of the time, this is what you specify to the form so grails knows where to submit
    3. Parameters were slightly out of sync “Input A” -> “Input1”

    Then in the controller

    class TestController {
    
       def index = {
        def Input1 = params.Input1
        def Input2 = params.Input2
        ["Input1": Input1, "Input2": Input2]
       }
     }
    

    With this, the values will be rendered properly (inside the returned model)

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

Sidebar

Related Questions

I do have this code on my demo.gsp file. But I´m new to grails
I have a very basic question in saving objects which I get from a
This is my current scenario: I have checked in my grails app code +
I have read the documentation for Grails and Webtest in this site: http://www.grails.org/plugin/webtest And
I have two very similar methods in Grails, something like calculate statistics by os
I'm learning to use Grails and have run into a situation I don't understand
I have a Grails plugin which I’m using as basically a container for some
I'm using Grails 1.3.2 in NetBeans. I have a very simple unit test that
I'm using Grails 1.2.1. I have a class in my src/groovy file in which
I'm having this problem with the grails liferay-plugin: localhost_liferay_portlet_WEB_INF_grails_app_views_test_view_gsp: 17: expecting anything but ''\n'';

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.