I am having an issue with the collectionChanged
event being fired when a transient
property of a DTO is changed. I have a custom ComboBox
, which has a CheckBox
itemRenderer
for each row, that stays open till the user moves focus away from it. The dataProvider
is an ArrayCollection
of FooDto
. I want to be able to toggle the visible
propery of the FooDto
, but stop the ComboBox
from closing due to the dataProvider
being altered.
[Bindable]
class FooDto {
public var id:int;
public var name:String;
[transient]public var visible:Boolean;
}