How can i use states in conjunction with grid component in flex 3? When i use something like that it doesn't have 100% witdh or height even i set them to 100%. Is there any flexible way that i can use?
<mx:states>
<mx:State name="hasOpinionState">
<mx:RemoveChild target="{sntlabel1}"/>
<mx:AddChild position="firstChild" relativeTo="{grid}">
<view2:FundDemandItemOperationCanvas width="100%" height="100%"
model="{model.disabledOpinionUpdateModel}"/>
</mx:AddChild>
</mx:State>
</mx:states>
Here is the main state
<mx:Panel id="panel" title="Grs" width="100%" height="100%">
<mx:Grid id="grid" width="100%" height="100%">
<mx:GridRow id="notYetOpinion">
<mx:GridItem id="griditem1" horizontalAlign="center" verticalAlign="middle">
<view:SNTLabel id="sntlabel1" fontWeight="bold"
text="doesn't have opinion"/>
</mx:GridItem>
</mx:GridRow>
</mx:Grid>
</mx:Panel>