Tag Archive for 'indicatorgap'

03
Mar

Setting a custom required indicator skin on a FormItem container in Flex

The following example shows how you can set a custom indicator skin on a Flex FormItem container by setting the indicatorSkin style.

Full code after the jump.

Continue reading ‘Setting a custom required indicator skin on a FormItem container in Flex’

06
Nov

Setting the gap around the required indicator in a Flex form

The following example shows how you can set the gap around the required indicator in a Flex form by setting the indicatorGap style, as seen in the following snippet:

<mx:Style>
    FormItem {
        indicatorGap: 24;
    }
</mx:Style>

Full code after the jump.

Continue reading ‘Setting the gap around the required indicator in a Flex form’

06
Oct

Changing a Flex FormItem container’s indicator skin

The following example shows how you can change the FormItem container’s indicator skin which appears when the form item’s required property is set to true.

Full code after the jump.

Continue reading ‘Changing a Flex FormItem container’s indicator skin’