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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T22:10:21+00:00 2026-06-03T22:10:21+00:00

I understand how to add simple form validations in Play 2 such as nonEmptyText

  • 0

I understand how to add simple form validations in Play 2 such as nonEmptyText, but how would I implement more complex validations such as “at least one of the fields must be defined”? Presently I throw an exception in my model object if it gets initialized with all Nones, but this generates a nasty error message. I would prefer to get a friendly error message on the form page.

  • 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-03T22:10:23+00:00Added an answer on June 3, 2026 at 10:10 pm

    You can nest the mappings/tuples in your form definition and add verifying rules on mapping, sub-mapping, tuple and sub-tuple.
    Then in your templates you can retrieve the errors using form.errors("fieldname") for a specific field or a group a fields.

    For example :

    val signinForm: Form[Account] = Form(
        mapping(
            "name" -> text(minLength=6, maxLength=50),
            "email" -> email,
            "password" -> tuple(
                "main" -> text(minLength=8, maxLength=16),
                "confirm" -> text
            ).verifying(
                // Add an additional constraint: both passwords must match
                "Passwords don't match", password => password._1 == password._2
            )
        )(Account.apply)(Account.unapply)
    )
    

    If you have two different passwords, you can retrieve the error in your template using form.errors("password")

    In this example, you will have to write your own Account.apply and Account.unapply to handle (String, String, (String, String))

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

Sidebar

Related Questions

I don't understand how using a 'challenge token' would add any sort of prevention:
While I do understand php, I'm more of a sysadmin than a programmer. Add
It is simple to understand after this pic. I add fewtextfields in tableview I
I understand how to add a jquery-ui tab, and I understand how to select
while reading docs of backbone i can't understand how to add model to collection
I understand that I cannot add preconditions on an interface implementation. I have to
I understand that according to the HTML specification, it's invalid to add custom attributes
As far as I understand, visitor pattern is often used to add methods to
I understand the principles but i have a hard time seeing where the practical
I understand the pros of using namespaces within the actual application layers but when

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.