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

Is there any tag in JSF which can be used to assign some id to group of child tags, but not rendering any content? Something like this:

<h:unknowntag id="group">
  <h:inputText id="name" value="#{bean.name}" required="true">
    <f:ajax event="blur" execute="name" render="group" />
  </h:inputText>
  <h:message for="name"/>
</h:unknowntag>

I don't need <h:unknowntag> to render any content, but I need it to set id to whole group which I want to rerender after ajax event. Is there such a tag in JSF 2.0?

share|improve this question

1 Answer

up vote 2 down vote accepted

You can use the <h:panelGroup> for this. It renders a <span>, but that does not harm since it has no special meaning in HTML markup. You need an element anyway since the id has to be put somewhere in HTML DOM so that JS/Ajax can locate it for re-render.

share|improve this answer

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.