I'm using JSF and RichFaces 4. I have a huge form which I have to split into several panels. But when I do, I get the warning.
For example this makes it display the warning:
<h:form>
    <rich:tabPanel>
        <rich:tab>
            //Form elements go here
        </rich:tab>
    </rich:tabPanel>
</h:form>
How do I avoid it?