This question is locked. New answers and comments are not allowed.
Hello,
I've come across a bug where the header columns stop lining up with the rows. This only seems to happen in IE7 and when I use grouping. I've attached a screenshot and created a test project to demonstrate the issue. I reached my CSS sleuth capacity so I'm hoping one of ya'll can figure out what is causing the 1pixel shifts in each column.
Here is a snippet of the grid configuration:
I've come across a bug where the header columns stop lining up with the rows. This only seems to happen in IE7 and when I use grouping. I've attached a screenshot and created a test project to demonstrate the issue. I reached my CSS sleuth capacity so I'm hoping one of ya'll can figure out what is causing the 1pixel shifts in each column.
Here is a snippet of the grid configuration:
@(Html.Telerik().Grid<Model1>() .DataBinding(i => i.Ajax().Select<HomeController>(controller => controller.SearchLeads())) .Name("Leads") .Groupable() .Pageable(settings => settings.Enabled(true).Style(GridPagerStyles.NextPreviousAndDropDown | GridPagerStyles.PageInput).PageSize(50, new int[] { 10, 50, 100, 250})) .Columns(columns => { columns.Bound(i => i.Id).Width("5em").Title("Id"); columns.Bound(i => i.LastChanged).Title("Last Reviewed").Width("9em"); columns.Bound(i => i.LastChangedBy).Title("Last Reviewed By").Width("9em"); columns.Bound(i => i.Status).Width("15em"); columns.Bound(i => i.CreatedDate).Title("Last Revised").Width("9em"); columns.Bound(i => i.CreatedBy).Title("Last Revised By").Width("10em"); columns.Bound(i => i.AssignedTo).Title("Assigned To").Width("10em"); columns.Bound(i => i.TotalRooms).Width("10em"); columns.Bound(i => i.IsMultiProperty).Title("Multi Property?").Width("11em"); columns.Bound(i => i.BookingCount).Title(" # of Bookings").Width("11em"); columns.Template(m => "").Width("auto"); columns.Bound(i => i.Id).Hidden(); }) .DataKeys(i => i.Add(j => j.Id)) .Reorderable(config => config.Columns(true)) .Footer(true) .Sortable(config => config.SortMode(GridSortMode.MultipleColumn).OrderBy(config2 => config2.Add(lead=> lead.LastChanged).Descending())) .Filterable(config => config.Enabled(true)) .Selectable() .Scrollable(config => config.Enabled(true).Height("30em")) )