[
https://issues.apache.org/jira/browse/FLEX-34375?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Alex Harui resolved FLEX-34375.
-------------------------------
Resolution: Fixed
Fix Version/s: Apache Flex 4.12.2
Accepted Patch: 0b39956e5792df017315ddc585e1522894b17a1b
> FormItem label doesn't show when formItem visible and includeInLayout are set
> dynamically
> -----------------------------------------------------------------------------------------
>
> Key: FLEX-34375
> URL: https://issues.apache.org/jira/browse/FLEX-34375
> Project: Apache Flex
> Issue Type: Bug
> Components: mx: Form View
> Affects Versions: Apache Flex 4.12.0
> Environment: All
> Reporter: João Fernandes
> Assignee: Alex Harui
> Priority: Minor
> Labels: formItem, includeInLayout
> Fix For: Apache Flex 4.12.2
>
> Attachments: FLEX-34375.diff
>
> Original Estimate: 1m
> Remaining Estimate: 1m
>
> In the following example
> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
> xmlns:s="library://ns.adobe.com/flex/spark"
> xmlns:mx="library://ns.adobe.com/flex/mx">
> <fx:Script><![CDATA[
> [Bindable]
> public var show:Boolean;
> ]]></fx:Script>
> <s:HGroup>
> <mx:Form>
> <mx:FormItem label="test">
> <mx:TextInput text="test"/>
> </mx:FormItem>
> <mx:FormItem label="test">
> <mx:TextInput text="test"/>
> </mx:FormItem>
> <mx:FormItem label="test">
> <mx:TextInput text="test"/>
> </mx:FormItem>
> </mx:Form>
> <mx:Form>
> <mx:FormItem label="test" visible="{show}"
> includeInLayout="{show}">
> <mx:TextInput text="test"/>
> </mx:FormItem>
> <mx:FormItem label="test" visible="{show}"
> includeInLayout="{show}">
> <mx:TextInput text="test"/>
> </mx:FormItem>
> <mx:FormItem label="test" visible="{show}"
> includeInLayout="{show}">
> <mx:TextInput text="test"/>
> </mx:FormItem>
> </mx:Form>
> </s:HGroup>
> <mx:Button click="show=!show" label="click me" bottom="5" right="5"/>
> </s:Application>
> Once you press the button, only the textInputs are shown in the second form.
--
This message was sent by Atlassian JIRA
(v6.2#6252)