Apache – ValidationSummary component in Flex Framework

apache-flexvalidation

Is there any component that does handle validation errors similarly to ASP.NET's ValidationSummary control in flex? (See screenshot)

alt text http://i.msdn.microsoft.com/ms972961.pdc_userinput_fig2(en-us,MSDN.10).gif

Component should really only display all the errors for the validator it watches.

I'm convinced I already used it but I was unable to find it anywhere in the doc.

Best Answer

There is no component in Flex specifically designed to show a collection of all the validation errors in a form. Some built-in components have support for validation error indicators. TextInput, for instance, can display a red border with an error tooltip that appears on mouse roll over.

Related Topic