Archive for May 27th, 2010

ObjectCollector: Accessing Flex’s objects by id (even dynamic generated) from anywhere

No Comments »

Flex’s components have a nice id property which can be used to easily referencing object created.
All you know, that if I get the following mxml Application file:

Read More »


Best practices – Creating a composite component

No Comments »

Composite components are components that contain multiple components. They might be graphical assets or a combination of graphical assets and component classes. For example, you can create a component that includes a button and a text field, or a component that includes a button, a text field, and a validator.

Read More »


Best practices – Custom Component Implementation and points you should fire

No Comments »

createChildren()

Read More »


Determining a DataGridColumn object’s current sort order – callLater()

No Comments »

The callLater() method queues an operation to be performed for the next screen refresh, rather than in the current update. Without the callLater() method, you might try to access a property of a component that is not yet available. The callLater() method is most commonly used with the creationComplete event to ensure that a component has finished being created before Flex proceeds with a specified method call on that component.

Read More »