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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T03:45:18+00:00 2026-06-10T03:45:18+00:00

I have a <h:selectOneListbox> that appears when a <h:commandbutton> is clicked. When the user

  • 0

I have a <h:selectOneListbox> that appears when a <h:commandbutton> is clicked. When the user selects from the listbox I want the selected value to appear in a <h:inputText> and hide the listbox.

I can’t make the <h:selectoneListbox> stop rendering once it appears. The rendered attribute works fine when the view first appears, but is ignored after I click the list and the listener is invoked.

Any ideas?

Here is the Facelet:

<h:panelGroup>
    <h:inputText id="TitleText" value="#{bindingScheduleHandler.title}"/>
    <h:commandButton value="Clients" actionListener= #bindingScheduleHandler.clientList}" />

    <h:selectOneListbox id="listBox" value="#{bindingScheduleHandler.clients}" size="5"  
        rendered="#{bindingScheduleHandler.showClients}">
        <f:selectItems value="#{bindingScheduleHandler.clientLabelsValues}" />
        <f:ajax event="click" listener="#{bindingScheduleHandler.clickListener}"  
            render="TitleText" />
    </h:selectOneListbox>
</h:panelGroup>

Here is the backing bean:

public void clickListener(AjaxBehaviorEvent event) {
    this.title = clients;
    showClients = false;
    renderClientList = false;
}
  • 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-10T03:45:19+00:00Added an answer on June 10, 2026 at 3:45 am

    In the <f:ajax render>, you can’t refer components which are conditionally rendered by JSF. Instead, you need to refer a parent component which is always rendered. The simple explanation is that the <f:ajax> is using JavaScript to update the content (the node value) of the HTML element as represented by the JSF component. It isn’t possible to show/hide the HTML element itself.

    Just update a parent component instead.

    <h:panelGroup id="group">
        <h:inputText id="TitleText" value="#{bindingScheduleHandler.title}"/>
        <h:commandButton value="Clients" actionListener= #bindingScheduleHandler.clientList}" />
    
        <h:selectOneListbox id="listBox" value="#{bindingScheduleHandler.clients}" size="5"  
            rendered="#{bindingScheduleHandler.showClients}">
            <f:selectItems value="#{bindingScheduleHandler.clientLabelsValues}" />
            <f:ajax event="click" listener="#{bindingScheduleHandler.clickListener}"  
                render="group" />
        </h:selectOneListbox>
    </h:panelGroup>
    

    This will by the way also instantly fix the problem of the selected item not being displayed in the <h:inputText> 🙂

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

Sidebar

Related Questions

I have a p:selectOneListbox within an h:form but without the value attribute becuase I
I have a dataTable that lists some objects and I want to set a
Have converted devise new session from erb to Haml but doens't work, this is
Have a bunch of WCF REST services hosted on Azure that access a SQL
Have finally got a responsive site working (of a fashion). What I want to
Have a look at one of my websites: moskah.com The problem is that it
Have a simple contact us XPage created. Have server side validation in place that
I have JSF 1.1 page in which I have a <h:selectOneListbox . When I
Have one Doubt In MVC Architecture we can able to pass data from Controller
Have a network location that shows paths in the 8.3 short format. 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.