by Peter deHaan on March 28, 2010
in DateField
The following example shows how you can hide the text input field on the MX DateField control in Flex 3 by setting the Boolean visible and includeInLayout properties on the internal text field (using the getTextField() method in the mx_internal namespace).
[click to continue…]
Tagged as:
getTextInput(),
includeInLayout,
mx_internal,
visible
The following example shows how you can toggle FormItem containers in a Flex Form container by setting the includeInLayout and visible properties.
Full code after the jump.
[click to continue…]
Tagged as:
includeInLayout,
visible
The following example shows you how you can toggle the RichTextEditor control’s nested link text input by setting both the visible and includeInLayout properties of the control.
Full code after the jump.
[click to continue…]
Tagged as:
includeInLayout,
linkTextInput,
visible
by Peter deHaan on August 23, 2007
in VBox
The following example shows a pretty crude method for toggling a container’s visibility and removing it from the Flex application layout. Mind you, this probably isn’t the preferred/recommended method of doing this (I imagine using states would be a lot nicer/cleaner) but hey, I’ll have to save that method up for another entry.
Full code after the jump.
[click to continue…]
Tagged as:
includeInLayout,
visible