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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T16:25:40+00:00 2026-05-29T16:25:40+00:00

I have a JSF page that contains a form with several elements, that correspond

  • 0

I have a JSF page that contains a form with several elements, that correspond to different configurable attributes that the user can select,
say

<h:form> 
  <h:selectManyCheckbox value="#{bean.p}">
         <f:selectItem itemLabel="p1" itemValue="1" />
         <f:selectItem itemLabel="p2" itemValue="2" />
         <f:ajax render="panel1" />
  </h:selectManyCheckbox>

  <h:selectManyCheckbox value="#{bean.t}">
         <f:selectItem itemLabel="t1" itemValue="1" />
         <f:selectItem itemLabel="t2" itemValue="2" />
         <f:ajax render="panel1" />
  </h:selectManyCheckbox>

  <h:panelGroup id="panel1">....</h:panelGroup>
</h:form>

My problem is that the moment the user selects a value for p, I lose the values stored for t in the bean and so the other way around.

I need this information to create a query that returns the results I display in panel1, but at the moment I can only base this query on one parameter or the other.

Any help much appreciated

  • 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-29T16:25:42+00:00Added an answer on May 29, 2026 at 4:25 pm

    The managed bean is apparently in the request scope. A request scoped bean instance ends its life by end of the HTTP request/response cycle. Every ajax request thereafter on the same view accounts as a brand new HTTP request and will thus create a brand new bean instance with all properties set to default. You need to put the bean in the view scope in order to keep it alive as long as you’re interacting with the same view.

    @ManagedBean
    @ViewScoped
    public class Bean {
        // ...
    }
    

    See also:

    • How to choose the right bean scope?
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a JSF page that contains: <div class=tableCaption> <h2>Batch Details</h2> </div> and a
I have a JSF page that has a h:form that has some textfields and
I have a JSF page that includes a tree form tag which is rendered
I have a JSF page that is basically a create form. The form consists
I have a CommandButton on my JSF page. Can I redirect the user to
I have a jsf page that contains some javascript includes. And I want to
I have a JSF page that displays a RichFaces Treeview, from a TreeNodeImpl model
I have a JSF page. At one point, I have a <h:selectManyCheckbox> that is
I have jsf page: .... <form jsfc=h:form action=> <h:dataTable value=#{newMusician.strings} var=preferredMusicGenre id=musicGenresSelectTable> <h:column> <h:inputText
I have a JSF page that has a property datatable a.k.a p:dataTable I need

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.