I have a form like this:
<h:form>
<h:inputText/>
<h:panelGroup>
<!-- AJAX content will come here containing h:inputText elements -->
</h:panelGroup>
<h:inputText/>
</h:form>
Now using AJAX I put content into the panelGroup - and this content also contains h:inputText elements.. if I don't have a form tag in the included content I will get a warning - and if I have a form then I will have nested forms
What I would like is to have the content injected using AJAX to be part of the form already present - is that possible?