Put your [Bindable] tag on top of your class and it will make the
entire class bindable.
[Bindable]
public class MyVo
{
}
brian..
--- In [email protected], "toniabc" <[EMAIL PROTECTED]> wrote:
>
> Hi!
>
> I have one problem.
>
> I have Value Object that I want to Bind to my custom made component. I
> have no problems to bind every single value from VO to component. And
> if I change something in the VO, that will be changed.
>
> But I want to Bind the whole VO (at once, not every value by itself).
> So that I can override the whole VO and changes will be automatically
> trigger the update function in my component. And if I remove the VO,
> than I want to remove my component from view.
>
> Thank you,
> Toni P.
>