Our testing department found an interesting issue with IE. I am not sure if anyone has seen this. I created a simple snippet below that captures the problem. Basically, you have two subforms. One for a main object one for a related object. So basically to create the issue don't enter any information and press the add address button. The related object will complain that you must enter that address. Click anywhere on the page besides the text field. The browser locks up and mouse pointer turns into an hourglass. Click outside of the browser pane and hourglass goes away. So we have verified this behavior in IE6 and IE7 in both XP and Vista. Any suggestions?
<?xml version='1.0' encoding='windows-1252'?> <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0" xmlns:h="http://java.sun.com/jsf/html" xmlns:tr="http://myfaces.apache.org/trinidad" xmlns:trh="http://myfaces.apache.org/trinidad/html"> <trh:body> <h:form> <tr:subform id="mainObj" default="true"> <tr:inputText label="Name" required="true"></tr:inputText> </tr:subform> <tr:subform id="childObj"> <tr:commandButton text="Add Address" partialSubmit="true"></tr:commandButton> <tr:inputText label="Address" required="true"/> </tr:subform> </h:form> </trh:body> </jsp:root>