The problem I'm having is this:
When a height is specified for the grid, rows expand to that size when you drag them. If not height is specified for the grid then rows maintain their original size during the drag. I need to specify a size for the grid, however, in order to maximize the number of rows that are visible at any given time. Here is the ASPX for my grid (although I've tried sizing it several different ways):
<telerik:RadGrid ID="rgItems" runat="server" GridLines="None" Skin="WebBlue" OnNeedDataSource="rgItems_NeedDataSource" OnRowDrop="rgItems_RowDrop" Width="460px" Height="585px">
<ClientSettings allowrowsdragdrop=True AllowColumnsReorder="True" ReorderColumnsOnClient="True">
<Selecting AllowRowSelect=True />
<ClientEvents OnRowDropping="onRowDropping"/>
<Scrolling AllowScroll="True" UseStaticHeaders="True" />
</ClientSettings>
<MasterTableView DataKeyNames="nbrItemID" TableLayout="Fixed" AutoGenerateColumns="False">
<Columns>
<telerik:GridBoundColumn UniqueName="1" DataField="txtImageHTML" >
<HeaderStyle Width="60px" />
</telerik:GridBoundColumn>
<telerik:GridBoundColumn UniqueName="2" DataField="txtDescriptionHTML" HeaderText="<center>New Items</center>" >
<HeaderStyle Width="220px" />
</telerik:GridBoundColumn>
<telerik:GridBoundColumn UniqueName="3" DataField="txtCategoryHTML" />
</Columns>
<RowIndicatorColumn Visible="False">
<HeaderStyle Width="20px" />
</RowIndicatorColumn>
<ExpandCollapseColumn Resizable="False" Visible="False">
<HeaderStyle Width="20px" />
</ExpandCollapseColumn>
<EditFormSettings>
<PopUpSettings ScrollBars="None" />
</EditFormSettings>
</MasterTableView>
</telerik:RadGrid>
Any help is greatly apreciated!
