Is there any *easy* way to add a border to the selected item style or rollover style of items in a list control -- something to add a little more web 2.0 style instead of just a plain colored background to the selected item or rollover item?
Also, anyone have a clue as to what font the rich-text editor in this discussion forum is using - it's really sweet - seems familiar but can't put my finger on it.
thanks,
Jeremy Savoy
Comments
I've tried something like this ...
<mx:List
>
<mx:itemRenderer>
<mx:Component>
<mx:Box borderStyle="solid" borderColor="#000ccc">
<mx:Label text="{this.data}"/>
</mx:Box>
</mx:Component>
</mx:itemRenderer>
</mx:list>
But this sets every item to have a background color and border ....