Grouping tags in JSF does nothing?

Is there a tag in JSF that can be used to assign an id to a group of child tags, but not to play any content? Something like that:

<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 the id of the whole group that I want to rename after the ajax event. Is there such a tag in JSF 2.0?

+3
source share
1 answer

<h:panelGroup> . <span>, , HTML. , id - HTML DOM, JS/Ajax .

+2

Source: https://habr.com/ru/post/1777361/


All Articles