MultiLine Label in Flex
If you are using the control and the size of your text is bigger than the size of the container, you will see a cut off version of the text because by default, the Label control does not allow multiline text. So, here is what I wrote quickly to achieve this functionality. Incoming search terms:blog […]
Best practices – Custom Component Implementation and points you should fire
createChildren() When is it called? The createChildren() method is automatically called by Flex whenever the custom component is added to a parent by the call addChild(customComponent). Keep in mind that unlike the other overridden methods in this article, there is no invalidate method associated with it. What is its purpose? To add other child components […]