In my changes yesterday, I think what I did was move the compile-js mojo
to the compile phase along with the compile-as and compile-extern mojo.
All three compiles are needed to build SWCs, but only two are needed to
build an example/app. There is no need for a compile-extern. Does
compile-extern
twoch, 5. Oktober 2016 15:55:00
An: dev@flex.apache.org
Betreff: [FlexJS] Confusion about compilaton
Hi,
I am currently digging though some things Carlos recent posts made me aware of.
Especially his comment about the maven build double compiling stuff. I did
stumble over something while setting
Hi,
I am currently digging though some things Carlos recent posts made me aware of.
Especially his comment about the maven build double compiling stuff. I did
stumble over something while setting up a first pure-js testsuite test.
In this module I want to create the JS version of the HelloWor
Might be you need to fully qualify RadioButton
On 5/7/13 10:01 AM, "Peter Ent" wrote:
> As a matter of fact, it does. Well, its super-class does.
>
> org.apache.flex.jquery.staticControls.RadioButton extends
> org.apache.flex.html.staticControls.RadioButton which has initModel. I'll
> try addi
As a matter of fact, it does. Well, its super-class does.
org.apache.flex.jquery.staticControls.RadioButton extends
org.apache.flex.html.staticControls.RadioButton which has initModel. I'll
try adding it to the jQuery version and have it call the super method.
-peter
On 5/7/13 11:26 AM, "Alex Ha
Does your RadioButton have a method called initModel? The base classes
don't implement it by default.
On 5/7/13 7:38 AM, "Peter Ent" wrote:
> I'm trying to programmatically create a RadioButton to test and create a
> jQuery version. My ActionScript code works well:
>
>
> public function crea
I'm trying to programmatically create a RadioButton to test and create a jQuery
version. My ActionScript code works well:
public function createNewRadioButton() : void
{
var rb:RadioButton = new RadioButton();
rb.initModel();
rb.initSkin();
rb.text = "New Radio";
rb.groupName = "group1";