Return-Path: X-Original-To: apmail-myfaces-commits-archive@www.apache.org Delivered-To: apmail-myfaces-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 85BF292BA for ; Fri, 27 Jan 2012 23:39:01 +0000 (UTC) Received: (qmail 46262 invoked by uid 500); 27 Jan 2012 23:39:01 -0000 Delivered-To: apmail-myfaces-commits-archive@myfaces.apache.org Received: (qmail 46151 invoked by uid 500); 27 Jan 2012 23:39:00 -0000 Mailing-List: contact commits-help@myfaces.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "MyFaces Development" Delivered-To: mailing list commits@myfaces.apache.org Received: (qmail 46144 invoked by uid 99); 27 Jan 2012 23:39:00 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Jan 2012 23:39:00 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Jan 2012 23:38:58 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 658B4238890B for ; Fri, 27 Jan 2012 23:38:37 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1236925 - /myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago-sheet.js Date: Fri, 27 Jan 2012 23:38:37 -0000 To: commits@myfaces.apache.org From: bommel@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120127233837.658B4238890B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: bommel Date: Fri Jan 27 23:38:36 2012 New Revision: 1236925 URL: http://svn.apache.org/viewvc?rev=1236925&view=rev Log: TOBAGO-1079 Problem using paging in sheet under IE Modified: myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago-sheet.js Modified: myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago-sheet.js URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago-sheet.js?rev=1236925&r1=1236924&r2=1236925&view=diff ============================================================================== --- myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago-sheet.js (original) +++ myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago-sheet.js Fri Jan 27 23:38:36 2012 @@ -249,10 +249,10 @@ Tobago.Sheet.prototype.doKeyEvent = func } if (keyCode == 13) { if (input.value != input.nextSibling.innerHTML) { + Tobago.stopEventPropagation(event); + event.returnValue = false; this.reloadWithAction(event.srcElement, input.actionId); - Tobago.stopEventPropagation(event); - } - else { + } else { this.textInput = input; this.hideInput(); }