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

  • Home
  • SEARCH
  • 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 892587
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T14:04:53+00:00 2026-05-15T14:04:53+00:00

I have a multiple select variable posting to controller. The way multiple select works

  • 0

I have a multiple select variable posting to controller. The way multiple select works is that it is passed as a single String if there was only one value selected and as a String[] if more than one values selected. I want to keep processing simple and treat the passed value(s) the same. So the best way I can up with is to convert it to List like so:

def selectedValues = params.selectedValues

List valuelist = new ArrayList()

if(selectedValues instanceof String) {
    valuelist.add(selectedValues)
} else {
    valuelist = selectedValues as List
}

It works but I am curious if there is a groovier way to do this, maybe with a one liner :).

Of course if I simply do:

List valuelist = selectedValues as List

It will not work for a single selected value as it will convert it from lets say 24 to [2,4]

Any ideas?

  • 1 1 Answer
  • 1 View
  • 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-15T14:04:53+00:00Added an answer on May 15, 2026 at 2:04 pm

    You can use flatten to get that:

    def toList(value) {
        [value].flatten().findAll { it != null }
    }
    
    assert( ["foo"] == toList("foo") )
    assert( ["foo", "bar"] == toList(["foo", "bar"]) )
    assert( [] == toList([]) )
    assert( [] == toList(null) )
    

    Or, if you don’t want a separate method, you can do it as a one liner:

    [params.selectedValues].flatten().findAll{ it != null }
    

    I’d personally just write two methods and let the type system deal with it for me:

    def toList(String value) {
        return [value]
    }
    
    def toList(value) {
        value ?: []
    }
    
    assert( ["foo"] == toList("foo") )
    assert( ["foo", "bar"] == toList(["foo", "bar"]) )
    assert( [] == toList([]) )
    assert( [] == toList(null) )
    

    It’s more efficient and I think a little more obvious what’s going on.

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

Sidebar

Related Questions

I have multiple tables that need to be merged into one. SELECT name, SUM(money)
I have this command (visibleSelect is jquery variable that holds multiple select list): var
i have a form that has a multiple select drop down. a user can
I have multiple NxM matrices and want to select one of them by a
I have a query that joins multiple tables. QString str1 = SELECT DISTINCT f.pk_file_ID,
In my application I have a generic query that applies to multiple users. There
Is there a way to prompt for multiple file select and assign those files
I have multiple multi-select boxes with the same class and i want to unselect
So I have two multiple select boxes like this <select id=foo multiple=multiple> <option value=1>Option
I have a stored procedure with multiple insert/select statements. Let's say I'm using the

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.