flex-users / flexlib

Open Source Flex components library.
github.com/flex-users/flexlib
MIT License
204 stars 91 forks source link

SuperTabNavigator.setClosePolicyForChild() doesn't work for the first child #312

Open nicoulaj opened 13 years ago

nicoulaj commented 13 years ago

Originally filed by seanbcus...@gmail.com on 2010-06-23T21:32:58

What steps will reproduce the problem? public class X extends SuperTabNavigator { public function X() { super(); //this.addChild( new VBox() ); //this.setClosePolicyForTab( 0, SuperTab.CLOSE_NEVER ); } public function foo():void { this.addChild( new VBox() ); this.setClosePolicyForTab( 0, SuperTab.CLOSE_NEVER ); trace( this.tabBar.numChildren ); } } var x:X = new X(); x.foo(); x.foo();

What is the expected output? 1 2

What do you see instead? 0 2

What version of the product are you using? On what operating system? Just downloaded newest version and installed for flex 4.

Please provide any additional information below. Something doesn't get initialized with the first tab until things get displayed the first time.

Also: if you uncomment the stuff in the constructor, it'll crash in the constructor because tabBar isn't even defined by the constructor.