From jira-events at lists.jboss.org Wed Aug 1 13:44:08 2012 Content-Type: multipart/mixed; boundary="===============7851274043487466309==" MIME-Version: 1.0 From: Israel Rios (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-5630) DataTable: sorting/filtering breaks in Safari with tooltip in HTML mode Date: Wed, 01 Aug 2012 13:44:07 -0400 Message-ID: <1330733290.28656.1343843048007.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 28125858.1231547824065.JavaMail.jira@cloud.prod.atl2.jboss.com --===============7851274043487466309== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-5630?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12709253#comm= ent-12709253 ] = Israel Rios commented on RF-5630: --------------------------------- It seems to be a problem with webkit implementation of document.importNode.= To circumvent this problem you can use this little piece of javascript cod= e on your template file: {code:javascript} if( /webkit/.test( navigator.userAgent.toLowerCase() ) ){ var _importNode =3D window.document.importNode; window.document.importNode =3D function(node, deep){ try{ return _importNode.apply(this, arguments); } catch(e) { if( e.code =3D=3D DOMException.NOT_SUPPORTED_ERR ){ // clone and adopt return document.adoptNode(node.cloneNode(deep)); } throw e; } }; } {code} = > DataTable: sorting/filtering breaks in Safari with tooltip in HTML mode > ----------------------------------------------------------------------- > > Key: RF-5630 > URL: https://issues.jboss.org/browse/RF-5630 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 3.3.3.Final > Environment: Safari, Facelets, HTML mode > Reporter: Nick Belaevski > Fix For: 3.Future > > Attachments: mcc-test.war > > > 1. Try to sort the table > 1a. Compare with common re-rendering > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:rich=3D"http://richfaces.org/rich" > xmlns:a4j=3D"http://richfaces.org/a4j"> > > > > > > > Header > > = > #{item} - #{forum5Bean.time} > = > > #{forum5Bean.time} > > > = > > = > > > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7851274043487466309==--