modalPanel runs away from cursor while moving in facelets under Safari 3.2
--------------------------------------------------------------------------

                 Key: RF-6823
                 URL: https://jira.jboss.org/jira/browse/RF-6823
             Project: RichFaces
          Issue Type: Bug
    Affects Versions: 3.3.1
         Environment: 3.3.1.BETA4
Safari 3.2
facelets
            Reporter: Alexander Dubovsky
            Assignee: Nick Belaevski
            Priority: Minor


Source:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
<html xmlns="http://www.w3.org/1999/xhtml";
        xmlns:ui="http://java.sun.com/jsf/facelets";
        xmlns:h="http://java.sun.com/jsf/html";
        xmlns:f="http://java.sun.com/jsf/core";
        xmlns:a4j="http://richfaces.org/a4j";
        xmlns:rich="http://richfaces.org/rich";>
<head>
<meta http-equiv="Content-Type" content="text/xhtml; charset=UTF-8" />
</head>
<body>
<f:view>
        <a4j:status startText="working"></a4j:status>

        <h:form>
                <rich:modalPanel id="modalPanelID" autosized="true" 
resizeable="false">
                        <f:facet name="header">
                                <h:outputText value="Events" />
                        </f:facet>
                        <f:facet name="controls">
                                <h:graphicImage value="/pics/info.gif"
                                        
onclick="Richfaces.hideModalPanel('modalPanelID'); return false;" />
                        </f:facet>
                        <p>The component implements a modal dialog window All 
operations
                        in the main application window are locked out while 
this window is
                        active Opening and closing the window is done through 
client
                        JavaScript code</p>
                </rich:modalPanel>

                <h:commandLink value="Show Panel"
                        
onclick="Richfaces.showModalPanel('modalPanelID');return false;" />
                <br />
                <a4j:commandButton value="reRender" 
reRender="modalPanelID"></a4j:commandButton>
        </h:form>

</f:view>
</body>
</html>

# Open page and click reRender button.
# Click "Show Panel" button (autosize="true" and resizeable="false"). 
# Try to move panel.
Result: panel quickly runs away from cursor

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        
_______________________________________________
richfaces-issues mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/richfaces-issues

Reply via email to