Hi everybody!
I have this code in flex:

First code:
---------------
<mx:DataGrid  id="myGrid"
            dataProvider="{myInitGrid}"
            includeInLayout="{myGrid.visible}"
            visible="{myBoolean}">
---------------

I´m sure some days ago if my component "myGrid" was visible, was also
includeInLayout value "true ", but now it doesn't work right because
myGrid is visible because "myBoolean" = true, but
myGrid.includeInLayout is "false" ...


What is the difference between my "First code" and this "second
code" ? because when I use this second code it works fine...


Second code:
---------------
<mx:DataGrid  id="myGrid"
            dataProvider="{myInitGrid}"
            includeInLayout="{myBoolean}"
            visible="{myBoolean}">
---------------

Can you help me or try to explain what is the difference between first
and second codes?

Thanks.

-- 
You received this message because you are subscribed to the Google Groups "Flex 
India Community" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/flex_india?hl=en.

Reply via email to