Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to change the style (put some text in italic) in one part of a mx:Tree. Like this

var data:Array = [
 { label: "one", children: [
   { label: "a"},   { label: "b"},   { label: "c"} 
  ]}
];

how I can show only the element with label c in italic?

share|improve this question

1 Answer

You can write a custom item renderer that checks for a given condition in your data (data.label == "c" in your case) and shows the text in italic depending on the outcome. If you did it in MXML, since you cannot bind style properties, a way of achieving it would be:

...
<mx:Label text="{data.label}" visible="{data.label == 'c'}" includeInLayout="{data.label == 'c'}" fontStyle="italic"/>
<mx:Label text="{data.label}" visible="{data.label != 'c'}" includeInLayout="{data.label != 'c'}"/>
...

where ... stand for the surrounding item renderer markup

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.