I just downloaded the trial seeing if our company would like the software or not.
first thing I did was try out the grid.
The columns do not align with the headers when using UseStaticHeaders="true"
see http://www.donordialogue.com/GridExample.gif
I added the below:
It does the same thing in both firefox, and Internet Explorer. Although firefox it is worse.
Am I doing something wrong?
first thing I did was try out the grid.
The columns do not align with the headers when using UseStaticHeaders="true"
see http://www.donordialogue.com/GridExample.gif
It does the same thing in both firefox, and Internet Explorer. Although firefox it is worse.
Am I doing something wrong?
| <telerik:RadGrid ID="rgDonors" ShowStatusBar="true" Skin="Outlook" |
| ShowFooter="false" GridLines="Both" AllowSorting="True" AllowPaging="True" PageSize="50" |
| AutoGenerateColumns="false" |
| Width="500px" runat="server"> |
| <PagerStyle Mode="NumericPages" /> |
| <MasterTableView Width="100%"> |
| <Columns > |
| <telerik:GridBoundColumn DataField="DonorID" HeaderText="Donor ID" ItemStyle-Width="100" ItemStyle-HorizontalAlign="Left" /> |
| <telerik:GridBoundColumn DataField="FirstName" HeaderText="First Name" ItemStyle-Width="100" ItemStyle-HorizontalAlign="Left"/> |
| <telerik:GridBoundColumn DataField="LastName" HeaderText="First Name" ItemStyle-Width="100" ItemStyle-HorizontalAlign="Left"/> |
| <telerik:GridBoundColumn DataField="DateOfBirth" HeaderText="Date Of Birth" DataFormatString="{0:MM/dd/yyyy}" ItemStyle-Width="50" ItemStyle-HorizontalAlign="Left"/> |
| <telerik:GridButtonColumn ButtonType="LinkButton" Text="[Select]" CommandName="Select" ItemStyle-Width="100" ItemStyle-HorizontalAlign="Left"/> |
| </Columns> |
| </MasterTableView> |
| <ClientSettings> |
| <Scrolling AllowScroll="True" UseStaticHeaders="True" SaveScrollPosition="True"></Scrolling> |
| </ClientSettings> |
| </telerik:RadGrid> |
