Return-Path: X-Original-To: apmail-flex-issues-archive@minotaur.apache.org Delivered-To: apmail-flex-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8FB341060B for ; Fri, 27 Dec 2013 00:37:51 +0000 (UTC) Received: (qmail 61456 invoked by uid 500); 27 Dec 2013 00:37:51 -0000 Delivered-To: apmail-flex-issues-archive@flex.apache.org Received: (qmail 61434 invoked by uid 500); 27 Dec 2013 00:37:51 -0000 Mailing-List: contact issues-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list issues@flex.apache.org Received: (qmail 61426 invoked by uid 99); 27 Dec 2013 00:37:51 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Dec 2013 00:37:51 +0000 Date: Fri, 27 Dec 2013 00:37:51 +0000 (UTC) From: "Justin Mclean (JIRA)" To: issues@flex.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (FLEX-34016) mx DateChooser freezes on any input when rendered in modal popup MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/FLEX-34016?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Justin Mclean updated FLEX-34016: --------------------------------- Description: Compile and run this application pasted below in debug mode. Click on any control in the DateChooser popup and freeze the application. Change 'modal' param in addPopUp function to false; and application will not freeze. Scratch head, then possibly address? was: Compile and run this application pasted below in debug mode. Click on any control in the DateChooser popup and freeze the application. Change 'modal' param in addPopUp function to false; and application will not freeze. Scratch head, then possibly address? {code} {code} > mx DateChooser freezes on any input when rendered in modal popup > ---------------------------------------------------------------- > > Key: FLEX-34016 > URL: https://issues.apache.org/jira/browse/FLEX-34016 > Project: Apache Flex > Issue Type: Bug > Components: mx: DateChooser > Affects Versions: Apache Flex 4.11.0 > Environment: Adobe FlashBuilder 4.6 on Windows 7 w/ SDK 4.11.0 > Reporter: Alan Holden > Assignee: Justin Mclean > Priority: Critical > > Compile and run this application pasted below in debug mode. Click on any control in the DateChooser popup and freeze the application. Change 'modal' param in addPopUp function to false; and application will not freeze. Scratch head, then possibly address? > > xmlns:s="library://ns.adobe.com/flex/spark" > xmlns:mx="library://ns.adobe.com/flex/mx" > minWidth="955" minHeight="600"> > > import mx.controls.DateChooser; > import mx.managers.PopUpManager; > > private var dc:DateChooser; > public function openChooser(event:MouseEvent):void { > dc = new DateChooser(); > dc.yearNavigationEnabled = true; > PopUpManager.addPopUp(dc,this,true); > PopUpManager.centerPopUp(dc); > focusManager.setFocus(dc); > } > ]]> > > > > -- This message was sent by Atlassian JIRA (v6.1.5#6160)