When I bind data to my grid and it has enough rows, say 20, to fill the grid evertyhing looks fine but if I bind say 4 rows it makes each of those row heights really big to fit the same space those 20 did. Below is my setup in the ASPX paage, what am I missing?
<ig:UltraWebGrid ID="Grid1" runat="server" DataKeyFields="ResultID" AutoGenerateColumns="false"> <DisplayLayout AllowColSizingDefault="Free" AllowSortingDefault="OnClient" > <FrameStyle BorderWidth="0px" Font-Size="8pt" Font-Names="Verdana" Width="98%" BorderStyle="None" Height="91%"> </FrameStyle> <ClientSideEvents InitializeLayoutHandler="UltraWebGrid1_InitializeLayout" ></ClientSideEvents> </DisplayLayout> </ig:UltraWebGrid>
With a little more searching I found this post
http://forums.infragistics.com/forums/p/2726/16560.aspx#16560
And the CSS solution in there worked for me.
Ok, it is the Framestyle...I need that though to keep the grid inside the area I want it. Can I use the framestyle but not have it do the funky rowheight adjustment?