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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T15:26:22+00:00 2026-05-22T15:26:22+00:00

Problem: Sometimes you will want to access a component from javascript with getElementById ,

  • 0

Problem: Sometimes you will want to access a component from javascript with
getElementById, but id’s are generated dynamically in JSF, so you
need a method of getting an objects id. I answer below on how you can do this.


Original Question:
I want to use some code like below. How can I reference the inputText JSF component in my Javascript?

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:f="http://java.sun.com/jsf/core">
    <head>
       <title>Input Name Page</title>
        <script type="javascript" >
          function myFunc() {
            // how can I get the contents of the inputText component below          
            alert("Your email address is: " + document.getElementById("emailAddress").value);
          }
       </script>
    </head>
    <h:body>
        <f:view>
            <h:form>
                Please enter your email address:<br/>
                <h:inputText id="emailAddresses" value="#{emailAddresses.emailAddressesStr}"/>
                <h:commandButton onclick="myFunc()" action="results" value="Next"/>
            </h:form>
        </f:view>
    </h:body>
</html>

Update: this post Client Identifiers in JSF2.0 discusses using a technique like:

<script type="javascript" >
  function myFunc() {
    alert("Your email address is: " + document.getElementById("#{myInptTxtId.clientId}").value);
  }
</script>

<h:inputText id="myInptTxtId" value="backingBean.emailAddress"/>
<h:commandButton onclick="myFunc()" action="results" value="Next"/>

Suggesting that the attribute id on the inputText component
creates an object that can be accessed with EL using #{myInptTxtId},
in the above example. The article goes on to state that JSF 2.0 adds
the zero-argument getClientId() method to the UIComponent class.
Thereby allowing the #{myInptTxtId.clientId} construct suggested
above to get the actual generated id of the component.

Though in my tests this doesn’t work. Can anyone else confirm/deny.
The answers suggested below suffer from drawback that the above
technique doesn’t. So it would be good to know if the above technique
actually works.

  • 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-22T15:26:23+00:00Added an answer on May 22, 2026 at 3:26 pm

    Answer: So this is the technique I’m happiest with. Doesn’t require doing too much weird stuff to figure out the id of a component. Remember the whole point of this is so you can know the id of a component from anywhere on your page, not just from the actual component itself. This is key. I press a button, launch javascript function, and it should be able to access any other component, not just the one that launched it.

    This solution doesn’t require any ‘right-click’ and see what the id is. That type of solution is brittle, as the id is dynamically generated and if I change the page I’ll have to go through that nonsense each time.

    1. Bind the component to a backing bean.

    2. Reference the bound component wherever you want.

    So here is a sample of how that can be done.

    Assumptions: I have an *.xhtml page (could be *.jsp) and I have defined a backing bean. I’m also using JSF 2.0.

    *.xhtml page

    <script>
      function myFunc() {
        var inputText = document.getElementById("#{backBean.emailAddyInputText.clientId}")                 
        alert("The email address is: " + inputText.value );
      }
    </script>
    
    <h:inputText binding="#{backBean.emailAddyInputText}"/>
    <h:commandButton onclick="myFunc()" action="results" value="Next"/>
    

    BackBean.java

    UIInput emailAddyInputText;
    

    Make sure to create your getter/setter for this property too.

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

Sidebar

Related Questions

Problem: I have an address field from an Access database which has been converted
I have a very weird problem: sometimes when I call nHibernate update to an
A very niche problem: I sometimes (30% of the time) get an 'undefined handler'
I sometimes have difficulties with other people who wish to solve a problem when
We are using Team City and I noticed problem during running Watin test. Sometimes
My Access 2000 DB causes me problems - sometimes (haven't pinpointed the cause) the
Problem: I have two spreadsheets that each serve different purposes but contain one particular
I really hate sometimes how IDictionary<TKey, TValue> [key] will throw an exception if the
Sometimes I get Oracle connection problems because I can't figure out which tnsnames.ora file
I'm working on a WPF application that sometimes exhibits odd problems and appears to

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.