Return-Path: Delivered-To: apmail-myfaces-users-archive@www.apache.org Received: (qmail 18344 invoked from network); 13 Nov 2009 12:05:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 13 Nov 2009 12:05:09 -0000 Received: (qmail 25032 invoked by uid 500); 13 Nov 2009 12:05:08 -0000 Delivered-To: apmail-myfaces-users-archive@myfaces.apache.org Received: (qmail 24948 invoked by uid 500); 13 Nov 2009 12:05:07 -0000 Mailing-List: contact users-help@myfaces.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "MyFaces Discussion" Delivered-To: mailing list users@myfaces.apache.org Received: (qmail 24938 invoked by uid 99); 13 Nov 2009 12:05:07 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Nov 2009 12:05:07 +0000 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=MSGID_MULTIPLE_AT,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [194.246.118.4] (HELO gozo.interway.ch) (194.246.118.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Nov 2009 12:04:56 +0000 Received: from vista (ppp-93-104-61-239.dynamic.mnet-online.de [93.104.61.239]) (Authenticated sender: rene.guenther@innflow.com) by gozo.interway.ch (Postfix) with ESMTPA id 9A2B715445 for ; Fri, 13 Nov 2009 13:04:35 +0100 (CET) From: =?iso-8859-1?Q?=22G=FCnther=2C_Rene_-_Innflow_AG=22?= To: Subject: FYI: Tomahawk Popup + IE 6/7: can not open site issue Date: Fri, 13 Nov 2009 13:04:21 +0100 Message-ID: <000001ca6459$6fa8a270$4ef9e750$@guenther@innflow.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 12.0 Thread-Index: AcpkWWUhMQaTrXOUQQuCfluEhlkqNw== Content-Language: de-ch X-Virus-Checked: Checked by ClamAV on apache.org On IE 6/7 we encountered a problem with the tomahawk popup component. That issue is probably related to http://support.microsoft.com/default.aspx/kb/927917 I found 2 posts related to that problem in the mailing list: http://www.mail-archive.com/users@myfaces.apache.org/msg37411.html http://www.mail-archive.com/users@myfaces.apache.org/msg52120.html For us that issue comes up when the user points the mouse pointer over a popup component before the page finished loading. The following workaround worked for us. It is not a real fix since we had to add JavaScript code in our JSF files which are not part of the tomahawk library. And it might have side effects. 1. Added the following code at the top of the JSF page which uses the popup component 2. Body onload attribute: onload="setLoaded(); 3. Modified JSPopup.js from the library, so that the following function is only called after page loaded: function orgApacheMyfacesPopupDisplay(ev) { if (loaded != null && loaded) { ... } } To reproduce just put the popup component around a command button. Maybe a complex form is needed or the page is loaded too quick. If there is already a better solution or if that issue is not reproducible please let me know. Cheers Rene