0

What to do to hide Office manager: if {manager} is empty?

<mx:Text id="lblManager" text="Office manager: {manager}" width="220" height="20"/>
user472285
  • 2,604
  • 5
  • 37
  • 55

1 Answers1

0

Try this. You may also test if "manager" is null:

<mx:Text id="lblManager" visible="{manager.length > 0}" text="Office manager: {manager}" width="220" height="20"/>
fonini
  • 3,243
  • 5
  • 30
  • 53