Question

I need to include an icon to the left of a label in my form. it would probably work best if the icon was part of the label. it seems to me that a form item cannot have anything preceed the label on the left side, is there anyway around this?

No correct solution

OTHER TIPS

If you check out the source code for the formItem it has two children. one is the label and the other is the indicatorSkin. So adding an icon/image isn't going to be possible without extending the formItem class or going with something different like the Grid (which will give a similar layout), but this will obviously not include any of the features that the form has (such as required fields etc.

check out this post on extending the FormItem to include an image/icon. http://kennethsutherland.com/2009/05/27/formitem-adding-an-icon/

I've edit this post as after a bit of thought my previous answer was crap :) The blog post will let you add an image to the formItem.

Your best bet is to extend the FormItem class and add a property so you can specify the image to be displayed. Then override commitProperties(), measure() and updateDisplayList() to create the icon, set the component's preferred size and position the icon, respectively.

Should have said this is a FLEX question

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top