I have a grid with Office2007 skin (although the same happens regardless of skin). I have ajax enabled, when I click a row, the post back happens - the colour of the row changes, but the height of the row also changes. Before I select anything there is a lot of padding, but there seems to be an autofit going on after the callback returns.
<
rad:RadGrid ID="grdStudyCycles" runat="server" AutoGenerateColumns="False" DataSourceID="SqlStudyCycleTimes"
EnableAJAX="True" GridLines="None" Width="408px" OnItemCommand="grdStudyCycles_ItemCommand" Skin="Office2007">
<MasterTableView DataSourceID="SqlStudyCycleTimes" CellPadding="0" GridLines="Both" DataKeyNames="MEASURE" ItemStyle-Height="5" >
<Columns>
<rad:GridBoundColumn DataField="MEASURE" UniqueName="MEASURE" HeaderText="Interval">
<ItemStyle HorizontalAlign="Left" />
</rad:GridBoundColumn>
<rad:GridBoundColumn DataField="TARGET" UniqueName="TARGET" DataFormatString="{0:G0}" DataType="System.Decimal" HeaderText="Target">
<ItemStyle HorizontalAlign="Left" />
</rad:GridBoundColumn>
<rad:GridBoundColumn DataField="BLYEAR_AVG" UniqueName="BLYEAR_AVG" DataFormatString="{0:G0}" DataType="System.Int32" HeaderText="2007">
<ItemStyle HorizontalAlign="Left" />
</rad:GridBoundColumn>
<rad:GridBoundColumn DataField="FORECAST_AVG" UniqueName="FORECAST_AVG" DataFormatString="{0:G0}" DataType="System.Int32" HeaderText="Forecast">
<ItemStyle HorizontalAlign="Left" />
</rad:GridBoundColumn>
<rad:GridBoundColumn DataField="WYE_AVG" UniqueName="WYE_AVG" DataFormatString="{0:G0}" DataType="System.Int32" HeaderText="WYE">
<ItemStyle HorizontalAlign="Left" />
</rad:GridBoundColumn>
<rad:GridBoundColumn DataField="YTD_AVG" UniqueName="YTD_AVG" DataFormatString="{0:G0}" DataType="System.Int32" HeaderText="YTD">
<ItemStyle HorizontalAlign="Left" />
</rad:GridBoundColumn>
</Columns>
<ExpandCollapseColumn Resizable="False" Visible="False">
<HeaderStyle Width="20px" />
</ExpandCollapseColumn>
<RowIndicatorColumn Visible="True">
<HeaderStyle Width="20px" />
</RowIndicatorColumn>
</MasterTableView>
<ClientSettings EnablePostBackOnRowClick="True" EnableClientKeyValues="False">
</ClientSettings>
</rad:RadGrid>
