Hi, I have a Windowshade as a root component; the child is an AdvancedDataGrid. I want the Windowshade to scale as a user expands/collapses a row in the DataGrid. So I trap the itemOpen and itemClose events and I try to adjust the height of the Windowshade like this:
this.owner.measuredHeight = grid.height; this.owner.measuredWidth = grid.width; But it does nothing. I thought using measuredHeight and measuredWidth was the way to go when resizing at run-time. Has anyone come across this before? Any tips are, again, very much appreciated.

