cpsdesigns2002 wrote:

Can I use listOwner from an event to target the combo using
ActionScript or only at runtime when creating the cellRenderer to
initialize the combo box?

You need to declare `listOwner` as a property of your custom cell renderer. See the CheckCellRenderer example:


class CheckCellRenderer extends UIComponent
{
var check : MovieClip;
var listOwner : MovieClip; // The reference we receive to the list.
...

Manish




Reply via email to