You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flex.apache.org by "João Fernandes (JIRA)" <ji...@apache.org> on 2014/06/17 13:55:01 UTC

[jira] [Created] (FLEX-34375) FormItem label doesn't show when formItem visible and includeInLayout are set dynamically

João Fernandes created FLEX-34375:
-------------------------------------

             Summary: 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
            Priority: Minor
         Attachments: FLEX-34375.diff

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)