Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

By default JSF renders the HTML field id name dynamically. ID name is generated randomly in the format formname:id_some_random_number.

Because of this i cannot use document.getElementById("").

Is there any solution for this problem?

share|improve this question

3 Answers

up vote 1 down vote accepted

You can get the generated ID by using UIComponent.getClientId (JSF 2, if you can use it, adds a no-arg version that makes this more useful with EL expressions). See this blog post for tips on working with JSF component identifiers (though note the caveats).

share|improve this answer

If all else fails, you can try giving the elements unique css classes and then accessing them via getElementsByClassName(). Or try browsing the childNodes() of an element with known id. Or you can add a node with known id inside your target element and then use .parentNode :)

share|improve this answer
It seems to be a really complicated solution... Why just use the "id" attribute? – romaintaz Aug 27 '09 at 11:36
As the poster says, he cannot use id, because it is random-generated. – n1313 Aug 27 '09 at 11:45
It is random-generated, except if you define yourself the "id" attribute... – romaintaz Aug 27 '09 at 13:49

You just need to specify the ID of the input. However, note that the ID will be prefixed by the ID of the form that contains the input field.

For example:

<h:form id="myForm">
    ...
    <h:inputText id="myInput" .../>

the real ID of the inputText is myForm:myInput.

Thus, this Javascript code will work:

var obj = document.getElementById("myForm:myInput");


Edit (for precision)

To be more precise, if a component implements the NamingContainer interface in Java, then all the nested components will have their ID prefixed by the ID of this component. This is the case for the <h:form/> component, but also for <h:datatable/>.

share|improve this answer
Yup this is how it is working but in some cases like if we embed the component inside another component then the id generated is not predictable. – Madhu Aug 27 '09 at 11:23
Could you edit your original post to give an example of such case? – romaintaz Aug 27 '09 at 11:41
This works in my applications. I dont like to use it tho, as if you change any of your components ID's or put them in a different form your javascript will stop working. – Karrax Aug 27 '09 at 20:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.