Hi,
This is my Grid:
Last Row gets added with Height
See how it has a last row, I didn't add that and I want to know how it gets added?
Also notice how I've highlighted text in FireBug, the RadGrid is the Table and its in a DIV container with Height: 300px. When I use FireBug to remove the height the last row dissappears - just as I want.
So my question is whats the setting causing the containing DIV to be 300px?
This is my Grid:
Last Row gets added with Height
See how it has a last row, I didn't add that and I want to know how it gets added?
Also notice how I've highlighted text in FireBug, the RadGrid is the Table and its in a DIV container with Height: 300px. When I use FireBug to remove the height the last row dissappears - just as I want.
So my question is whats the setting causing the containing DIV to be 300px?
<rad:RadGrid ID="RadGridGroup" runat="server" AutoGenerateColumns="False" GridLines="None" |
ShowStatusBar="false" AllowPaging="false" ShowFooter="true" RadControlsDir="RadControls/" |
OnItemCreated="RadGrid1_ItemCreated" OnItemDataBound="RadGrid1_ItemDataBound" Width="650px"> |
<MasterTableView AutoGenerateColumns="False"> |
<RowIndicatorColumn Visible="False"> |
<HeaderStyle Width="20px"></HeaderStyle> |
</RowIndicatorColumn> |
<ExpandCollapseColumn Visible="False" Resizable="False"> |
<HeaderStyle Width="20px"></HeaderStyle> |
</ExpandCollapseColumn> |
<Columns> |
</Columns> |
</MasterTableView> |
</rad:RadGrid> |