[
https://issues.jboss.org/browse/RF-11943?page=com.atlassian.jira.plugin.s...
]
Martin Maier commented on RF-11943:
-----------------------------------
I have run into the same problem. The error occurs when calling the delete function.
Should this even be performed on IE? Based on the comment, this is only for
Webkit-browsers. If so, an easy fix would be not to enter the if-block on IE.
{code}
// Remove the layerX and layerY events (generated in WebKit browsers)
if (event) {
delete event.layerX;
delete event.layerY;
}
{code}
[a4j:commandLink] [a4j:queue] IE8 throws an js error if using an
global queue within site
-----------------------------------------------------------------------------------------
Key: RF-11943
URL:
https://issues.jboss.org/browse/RF-11943
Project: RichFaces
Issue Type: Bug
Security Level: Public(Everyone can see)
Affects Versions: 4.2.0.CR1
Environment: richfaces-4.2.0-SNAPSHOT, IE8
Reporter: Rene O
Note, that this issue only occurs with IE8.
This issue doesn't occur with richfaces-4.1.0.Final
To reproduce this issue test the following site and click the a4j:commandLink
{code:title=Testpage}
<!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:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich"
>
<h:head>
<title>JSF Test</title>
</h:head>
<h:body>
<a4j:queue id="myQ" name="myQ" requestDelay="1200"
ignoreDupResponses="true" />
<h:form id="myForm">
<a4j:commandLink id="myLink" value="myLink" />
</h:form>
</h:body>
</html>
{code}
The following error occurs:
{code:title=JS Console Error within IE8}
Meldung: Das Objekt unterstützt diese Eigenschaft oder Methode nicht.
Zeile: 130
Zeichen: 17
Code: 0
URI:
http://localhost:8080/jsftest/javax.faces.resource/richfaces-queue.js.jsf...
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see:
http://www.atlassian.com/software/jira