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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T23:23:44+00:00 2026-05-31T23:23:44+00:00

I am trying to create a builder for my form fields and I come

  • 0

I am trying to create a builder for my form fields and I come with something like:

class Select(name:String) {
  object cell extends RequestVar("all")
  /* Do some stuff with name and cell */
}

val fruitsField = new Select("fruits")
val drinksField = new Select("drinks")

Now I can do:

fruitsField.cell.set("tomato")
drinksField.cell.get // returns "tomato"

When using those fields I realized that cell was shared by fruits and drinks. I know that it is the normal behavior but is there a way to have this inner object cell to be non-static?

EDIT

I tried the following but it has the same behavior:

class Select(name:String) {
  class ReqVar extends RequestVar("all")
  val cell = new ReqVar
  /* Do some stuff with name and cell */
}
  • 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-31T23:23:45+00:00Added an answer on May 31, 2026 at 11:23 pm

    Attention, the Lift documentation (2.4-M4) states about RequestVars (and SessionVars):

    If you find it necessary to create a RequestVar subclass of which there may be more than one instance, it is necessary to override the nameSalt() method to return a unique salt value for each instance to prevent name collisions.

    So you will have to do something like this:

    class Select(name:String) {
      val cell = new RequestVar("all") {
        override def __nameSalt = "select_cell_" + name
      }
      /* Do some stuff with name and cell */
    }
    

    Of course this will only work if there exists only one instance of Select with a given name per Request.

    EDIT

    Based on what you just posted

    class Select(name:String) {
      class ReqVar extends RequestVar("all") {
        override def __nameSalt = "select_reqvar_cell_" + name
      }
    
      val cell = new ReqVar
      /* Do some stuff with name and cell */
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to create a dynamic form builder. Therefore PHP gets a set of
I'm trying to create a URL builder form with JavaScript or jQuery. Basically, it
I'm trying to create an application in interface builder, and I'm having a problem.
I'm very new to Flash Builder and am trying to create an AIR app
Trying to create a user account in a test. But getting a Object reference
I'm trying to create a mock object of \SplObserver using PHPunit and attach the
I'm trying to create a simple form with sonata bundle. I have one problem
I'm trying to create an inventory form that sorts the products based on their
I am trying to create a form that creates a game and game_players at
I am trying to create a chart builder. I have a user inputs for

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.