Uploaded image for project: 'Apache Flex'
  1. Apache Flex
  2. FLEX-23665

TabNavigator "change" event timing issue

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Won't Fix
    • Adobe Flex SDK 3.5 (Release)
    • None
    • mx: Tab Navigator
    • None
    • Affected OS(s): All OS Platforms
      Affected OS(s): All OS Platforms
      Language Found: English

    Description

      Steps to reproduce:
      1. Run the attached TestTabNavigator6.mxml
      2. Click Tab2
      3. Click on "change the flag value" button
      4. Click Tab1
      5. Click Tab2

      Actual Results:
      button.visible is true, so the button in the Tab2 should be displayed; however, it is not.
      When you do "mouseOver" to the place where the button is located, then it is displayed.

      Expected Results:
      button should be displayed after step #5. Please see the attached mouseOverTheButton.jpg.

      Workaround (if any):
      Use data binding:

      <?xml version="1.0" encoding="utf-8"?>
      <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">

      <mx:Script>
      <![CDATA[
      [Bindable]
      private var _flg:Boolean = false;
      ]]
      >
      </mx:Script>

      <mx:VBox>
      <mx:HBox width="300">
      <mx:Button id="changeFlgBtn" label="change the flag value" click="_flg = !_flg;"/>
      <mx:Label text="flag value: "/>
      <mx:Label text="{_flg}"/>
      </mx:HBox>
      <mx:TabNavigator id="tabnavigator1" width="100%" height="200">
      <mx:VBox label="Tab1" width="100%"/>
      <mx:VBox label="Tab2" width="100%" backgroundColor="#eaf4ff">
      <mx:Button id="button" visible="{_flg}" />
      <mx:Spacer height="1000"/>
      </mx:VBox>
      </mx:TabNavigator>
      </mx:VBox>

      </mx:Application>

      Attachments

        Activity

          People

            adobejira Adobe JIRA
            adobejira Adobe JIRA
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: