Return-Path: X-Original-To: apmail-pivot-user-archive@www.apache.org Delivered-To: apmail-pivot-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id EA5BC79BD for ; Fri, 30 Sep 2011 07:40:47 +0000 (UTC) Received: (qmail 91573 invoked by uid 500); 30 Sep 2011 07:40:47 -0000 Delivered-To: apmail-pivot-user-archive@pivot.apache.org Received: (qmail 91111 invoked by uid 500); 30 Sep 2011 07:40:35 -0000 Mailing-List: contact user-help@pivot.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@pivot.apache.org Delivered-To: mailing list user@pivot.apache.org Received: (qmail 91036 invoked by uid 99); 30 Sep 2011 07:40:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Sep 2011 07:40:32 +0000 X-ASF-Spam-Status: No, hits=2.0 required=5.0 tests=SPF_NEUTRAL,URI_HEX X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [216.139.236.26] (HELO sam.nabble.com) (216.139.236.26) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Sep 2011 07:40:26 +0000 Received: from ben.nabble.com ([192.168.236.152]) by sam.nabble.com with esmtp (Exim 4.72) (envelope-from ) id 1R9XhV-0001Kz-NW for user@pivot.apache.org; Fri, 30 Sep 2011 00:40:05 -0700 Date: Fri, 30 Sep 2011 00:40:05 -0700 (PDT) From: prophe To: user@pivot.apache.org Message-ID: <1317368405721-3381693.post@n3.nabble.com> In-Reply-To: <2A55E2EE-F6E3-4FA2-B8B6-3E696C04DB79@verizon.net> References: <1317289073841-3378807.post@n3.nabble.com> <1317301124981-3379169.post@n3.nabble.com> <7EE0D69F-53A5-470E-84E9-C8EF13620CFA@verizon.net> <1317302246958-3379220.post@n3.nabble.com> <6069F5A5-7986-4153-A23B-C158B68AFF86@verizon.net> <1317303998153-3379298.post@n3.nabble.com> <2A55E2EE-F6E3-4FA2-B8B6-3E696C04DB79@verizon.net> Subject: Re: rowUpdated event MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit if the user presses Escape - the editor won't call update() it's true. But when click outside of editor the editor will call update() this is code of editor: @Override public boolean mouseDown(Container container, Mouse.Button button, int x, int y) { Display display = (Display)container; Window window = (Window)display.getComponentAt(x, y); boolean consumed; if (window != TableViewRowEditor.this && (window == null || !isOwner(window))) { endEdit(true); consumed = (getEditEffect() != null); } else { consumed = false; } return consumed; } ----- Thank you! -- View this message in context: http://apache-pivot-users.399431.n3.nabble.com/rowUpdated-event-tp3378807p3381693.html Sent from the Apache Pivot - Users mailing list archive at Nabble.com.