You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flex.apache.org by "Justin Mclean (JIRA)" <ji...@apache.org> on 2017/02/19 22:01:44 UTC

[jira] [Created] (FLEX-35273) [FlexJS] No error in code with multiple views

Justin Mclean created FLEX-35273:
------------------------------------

             Summary: [FlexJS] No error in code with multiple views
                 Key: FLEX-35273
                 URL: https://issues.apache.org/jira/browse/FLEX-35273
             Project: Apache Flex
          Issue Type: Bug
          Components: FlexJS
    Affects Versions: Apache FlexJS 0.8.0
            Reporter: Justin Mclean


This code when run will have the second view displayed, no warnings or errors occur.

{code}
<?xml version="1.0" encoding="utf-8"?>
<js:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
               xmlns:js="library://ns.apache.org/flexjs/basic"
               applicationComplete="init()">

   <fx:Script><![CDATA[
             public function init():void {
                 text1.text = "Visible";
                 text2.text = "Hidden";
             }
       ]]></fx:Script>

   <js:valuesImpl>
       <js:SimpleCSSValuesImpl/>
   </js:valuesImpl>

   <js:initialView>
       <js:View id="view1" visible="true" percentWidth="100" percentHeight="100">
           <js:Label id="text1" text="View 1" />
       </js:View>
       <js:View id="view2" visible="false" percentWidth="100" percentHeight="100">
           <js:Label id="text2" text="View 2" />
       </js:View>
   </js:initialView>

</js:Application>
{code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)