Tag Archive for '.errortip'

22
May

Changing the background color of an error tip in Flex

The following example shows how you can change the background color of a Flex error tip by setting the borderColor style on the .errorTip CSS selector.

Full code after the jump.

Continue reading ‘Changing the background color of an error tip in Flex’

07
Sep

Trimming strings using the Flex StringUtil class’s trim() method

The following example shows you how to use the StringUtil.trim() method in Flex to remove leading and trailing whitespace from form fields before validating user input. This allows you to make sure that user’s don’t try anything sneaky like enter spaces instead of characters to bypass any minimum length validation you may have in place when validating data.

Full code after the jump.

Continue reading ‘Trimming strings using the Flex StringUtil class’s trim() method’