How? I don't understand what you say. If I click on header of AdvancedDataGrid
or another area, it false because an object have no data property. But when I
click on row item in AdvancedDataGrid, an object I collect have data property.
I use code
if (inObj.hasOwnProperty("data"))
to avoid wrong case, after that I assign inObj.data to obj
I don't know why I still see value of data, but I can't assign it
Any one help me?
> It fails because InteractiveObject, unlike, say, UIComponent, doesn't have a
> data property. So instead of casting it to an object that doesn't have a
> data property, try casting it to one that does.
>
> HTH;
>
> Amy
>