Hello,
I have a Tree component where the labelField is a bindable property of the
data model:

=============
[Bindable(event='pageTitleChange')]
[Bindable(event='propertyChange')]
public function get pageTitle(): String {
return _pageTitle;
}

public function set pageTitle( data:String ): void {
_pageTitle = data;
dispatchEvent( new Event('pageTitleChange') );
}
=============

When I update the property, the bindings do not execute until I do something
on the tree like add a new node or expand and item. I tried calling methods
like validateProperties() when I know it should update, but no luck. I also
tried executeBindings(), which did work, but I loose my node selection.

Do I need to bubble up binding events to the parent node for them to execute
immediately?


Thanks for any input!
~Aaron

Reply via email to