Flex app broken on Microsoft Edge Browser?

2016-09-19 Thread nerdaddy
Since microsoft launched the Anniversary edition of Windows 10 a few weeks ago, my Flex projects nolonger run. I know they have implemented an intelligent pause feature, which is ok if it resumed ok, but what seesm to be happening is the code in my creationcomplete is running before the

Re: [FlexJS] TextInput/Form validation

2016-09-19 Thread Alex Harui
On 9/19/16, 11:41 AM, "OK" wrote: >Thanks Peter, found the PasswordInputBead. >I wonder if there's any way do tell FlexJS to just use the html5 build in >validation features? What APIs are you referring to? At least for now, the components in the HTML.swc should not

Re: [FlexJS] TextInput/Form validation

2016-09-19 Thread Peter Ent
That I don't know. If it is something possible with JavaScript, then you could code that within COMPILE::JS { } block. ‹peter On 9/19/16, 2:41 PM, "OK" wrote: >Thanks Peter, found the PasswordInputBead. >I wonder if there's any way do tell FlexJS to just use the html5

Re: [FlexJS] TextInput/Form validation

2016-09-19 Thread OK
Thanks Peter, found the PasswordInputBead. I wonder if there's any way do tell FlexJS to just use the html5 build in validation features? Thanks, Olaf -- View this message in context: http://apache-flex-users.246.n4.nabble.com/FlexJS-TextInput-Form-validation-tp13577p13579.html Sent from

Re: [FlexJS] TextInput/Form validation

2016-09-19 Thread Peter Ent
You would need to write a bead or two. Check out the password bead in the accessories folder of the HTML project. Peter On Sep 19, 2016, at 2:21 PM, OK > wrote: Hi, is there already any chance to validate input fields and mark it as required

[FlexJS] TextInput/Form validation

2016-09-19 Thread OK
Hi, is there already any chance to validate input fields and mark it as required using FlexJS? Thanks, Olaf -- View this message in context: http://apache-flex-users.246.n4.nabble.com/FlexJS-TextInput-Form-validation-tp13577.html Sent from the Apache Flex Users mailing list archive at

Re: rollOut Issue with child dropdown in panel

2016-09-19 Thread OK
Mihai Chira wrote > I would use event.target. I haven't compiled the code, but I imagine > something like this should work: > > if(event.target == p) > { > removeElement(p); > p = null; > } Unfortunately "target" and "currentTarget" refers always to the "Panel". Olaf -- View this

Re: rollOut Issue with child dropdown in panel

2016-09-19 Thread Mihai Chira
I would use event.target. I haven't compiled the code, but I imagine something like this should work: if(event.target == p) { removeElement(p); p = null; } On 19 September 2016 at 16:21, OK wrote: > Code was eaten by the mailing list, here's just the modified

Re: AIR 23

2016-09-19 Thread Alex Harui
I just tried to add it. Let me know if it works or not. Adding a new version requires downloading both the Mac and Win AIR SDKs twice each, so I have to find the "right time" to do it. -Alex On 9/19/16, 12:17 AM, "engorila" wrote: >Hi again! > >I need to use Apache Flex

Re: FlexJS: Binding Issue

2016-09-19 Thread PKumar
Thanks for details Alex, I will check the databinding example and try to create couple of example. - Regards, Prashant -- View this message in context: http://apache-flex-users.246.n4.nabble.com/FlexJS-Binding-Issue-tp13553p13573.html Sent from the Apache Flex Users mailing list

Re: FlexJS: Binding Issue

2016-09-19 Thread PKumar
Thanks for details Greg, I will download the nightly build today and validate your changes. There can be various use case on curly braces base binding. I will check couple of more binding use cases. Thanks. - Regards, Prashant -- View this message in context:

Re: rollOut Issue with child dropdown in panel

2016-09-19 Thread OK
Code was eaten by the mailing list, here's just the modified function: private function onRollout(event:MouseEvent):void { // Analyze the "relatedObject" property if(event.relatedObject!=null && Group(event.relatedObject).id != "dropDown") { removeElement(p);

Re: rollOut Issue with child dropdown in panel

2016-09-19 Thread OK
>How can this be avoided? The Panel should stay open... This modified "onRollout" code will work but maybe there is some more elegant way. It uses the relatedObject property [1]. Btw: Instead of the Panel maybe the Callout component [2] better suits your needs?. HTH, Olaf [1]

rollOut Issue with child dropdown in panel

2016-09-19 Thread Ulrich Andreas
Intern: for project use only Hi all, I encountered some problems when using a dropdown as a child component within a removable parent container. The container listens on "rollout" events for removing itself. The containing dropdown triggers this event (sadly) -only when the drop down list is

Re: AIR 23

2016-09-19 Thread chris_d_k
Hi engorilla, you can download the *air23 sdk for flex* (http://www.adobe.com/devnet/air/air-sdk-download.html) and just extract(unzip) into another sdk (f.e. flex 4.15/air22) you downloaded through the Apache Flex Installer and override changes... see

Re: AIR 23

2016-09-19 Thread engorila
Hi again! I need to use Apache Flex & Adobe AIR 23 to fix some bugs... Please can you update Apache Flex Installer with AIR 23? Thanks :) -- View this message in context: http://apache-flex-users.246.n4.nabble.com/AIR-23-tp13539p13566.html Sent from the Apache Flex Users mailing list

Re: FlexJS: Binding Issue

2016-09-19 Thread Alex Harui
On 9/18/16, 2:35 AM, "PKumar" wrote: >Thanks for info Greg, I am using FlexJS0.7.0. There are different >binding >bead available in FlexJS and no doc available on these. So if you can >provide brief info on below binding statement that will be really helpful >for me

Re: FlexJS: Binding Issue

2016-09-19 Thread Alex Harui
On 9/18/16, 2:47 AM, "PKumar" wrote: >Alex, > >BindingUtils class is useful to attach watcher on multiple properties or >chain of properties. If i am having a custom class with large no. of >properties and if i want to detect the multiple properties changes then >i