hai,

I want to resize a gridpanel which is placed inside a panel (that panel inside tablelayout).Actually i have two grid placing side by side.But this gridpanel is not in window its in Content of Masterpage.sample code is like this.
<ext:TableLayout ID="table" runat="server" Columns="2" >
<ext:Cell>
<ext:Panel ID="pnl" MonitorResize="true" Header="true" runat="server" Height="310" Width="360" Frame="true">
<Body>

<ext:FitLayout ID="fit" runat="server">
<ext:GridPanel ID="grd"
runat="server"
StoreID="store"
StripeRows="true"
Shim="false"
TrackMouseOver="true"
Collapsible="true" >

<ColumnModel>
<Columns></Columns>
</ColumnModel>

</ext:GridPanel>

</ext:FitLayout>
</Body>
</ext:Panel>
</ext:Cell>
<ext:Cell>
<ext:Panel ID="pnl2" runat="server" Title="title" Header="true" Height="310" Width="345" Frame="true">
<Body>
<ext:FitLayout ID="fit2" runat="server">

<ext:GridPanel ID="grd2"
runat="server"
StoreID="store2"
StripeRows="true" Shim="false">

<ColumnModel>
<Columns> </Columns>
</ColumnModel>

</ext:GridPanel>

</ext:FitLayout>
</Body>
</ext:Panel>
</ext:Cell>
</ext:TableLayout>


what i want is to resize each grid .can any one pls help me for this.

thanks in advance