public interface UntargetableComponent
@child(n)
, @next
and @previous
.
If you suppose this case, markup/literal components must implement UntargetableComponent
:
<table> <tr> <td> <h:outputLabel for="@next" value="Name:" /> </td> <td> <h:inputText id="input" value="#{bean.name} /> </td> </tr> </table>
@next
would otherwise actually target the markup:
</td> <td>and not desired component:
<h:inputText id="input" value="#{bean.name} />
Comments to: faces-dev@eclipse.org.
Copyright © 2019 Eclipse Foundation. All rights reserved.
Use is subject to license terms.