Re: Destroy popup

2016-06-07 Thread Alex Harui
Put in a breakpoint or something to see how many are being instantiated. I would imagine in the first scenario a new dialog gets instantiated every time. -Alex On 6/7/16, 11:21 AM, "mark goldin" wrote: >I am showing my popup from datagrid custom item renderer in two

Re: Typography in Labels

2016-06-07 Thread Alex Harui
On 6/7/16, 1:39 PM, "Fréderic Cox" wrote: >Hi Alex, > >I just tested this. I removed the mx from source and added both mx.swc and >sparkskins.mx. Now I was able to add mx:RichTextEditor into my project. It >shows on the mobile device too. Unfortunately the issue with the

Destroy popup

2016-06-07 Thread mark goldin
I am showing my popup from datagrid custom item renderer in two ways. 1. var aad:popupDialog = new popupDialog(); aad.show(this); 2. this.document._showPopupDialog.show(); for the second one the main screen has the following: _showPopupDialog = new ShowPopupDialog();

Re: Typography in Labels

2016-06-07 Thread Fréderic Cox
Also I tried to use mx:TextArea (which compiles fine). The TextArea shows the HTML formatted text until we edit it. Then the text format is lost due to the native textinput being overlayed I guess. Since mx:RichtTextEditor uses an mx:TextArea internally this is not a viable option either. On Tue,

Re: Typography in Labels

2016-06-07 Thread Fréderic Cox
Hi Alex, If I add mx:RichtTextEditor in my code I get: - Description Resource Path Location Type Could not resolve to a component implementation. RichTextEditor.mxml /CFShopManagerMobile/[source path] src/mx/controls line 206 Flex Problem On Mon, Jun 6, 2016 at 10:20 PM, Alex Harui