Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
Adobe Flex SDK Previous
-
None
-
None
-
Affected OS(s): All OS Platforms
Language Found: English
Description
Steps to reproduce:
1.Compile and run
<?xml version="1.0" encoding="utf-8"?>
<mx:Application backgroundColor="0xFFFFFF" backgroundImage="" height="375" width="500" xmlns:mx="http://www.adobe.com/2006/mxml" xmlns="*" >
<mx:Script>
<![CDATA[
[Bindable]
public var myDP:Array=[
,
{label:"Italy", data:"ITALY"},
{label:"England", data:"ENGLAND"},
{label:"Slovenia", data:"SLOVENIA"}];
]]
>
</mx:Script>
<mx:Style>
LinkBar
</mx:Style>
<mx:Canvas id="canvas1" width="300" height="200">
<mx:LinkBar id="linkBar_1" dataProvider="
"/>
</mx:Canvas>
<mx:Button label="Enable/Disable" click="linkBar_1.enabled=!linkBar_1.enabled "/>
</mx:Application>
2. Click "Enable/Disable" button to change "enabled" property
Actual Results:
backgroundDisabledColor style is ignored
Expected Results:
Workaround (if any):