How can locate text in the mx:List like this?
|"text1" "test2"|
-----------------------
|"text3" "text4"|
|
|
|
|
|
|
|
Actually you have to look at wordWrap="false|true" or just do something like this (you can add this code to your flex application and see - it works perfectly)
So all you have to do is convert your variables to strings and join 3 strings
And BTW at "Adobe® Flex™ 3 Language Reference" you can find it all=) The other way Is to create costume Item renderer. Good tutorial on this is on GoToAndLearn.com in Introduction to Flex: Part 2 and 3 ("...create a custom Flex component and use it as an item renderer for the List control...") |
|||
|
|
|
Creating a custom label renderer along the lines of @greg's answer is probably the way to go. One caution though when using custom item renderers where you add additional elements is to check the associated control class's |
||
|
|
|
|
You're going to need to make a custom item renderer that has a layout like:
The spacer will dynamically adjust itself to push the labels to either edge of the hbox; edit: oops yeah i meant 100% |
|||