This question is locked. New answers and comments are not allowed.
Hello. My grid renders perfectly in Chrome and Firefox, but in IE 9 the widths of the column headers differ from those in the data columns, so everything is misaligned. From reading other threads, I've tried putting my column.hidden(true) at the end of the list, as well as leaving one column with no .width so it will fill all remaining space. Still doesn't work. Here's my code and I've attached a screenshot. We're evaluating Telerik for use commercially. I like the product, but these rendering issues are awfully frustrating.
Html.Telerik().Grid<CustomerSearch.PolicyTransactionList>() .Name("Grid") .ClientEvents(events => events.OnDataBound("Grid_onDataBound")) .Columns(columns => { columns.Bound(o => o.PolicyNumber).Width(75); columns.Bound(o => o.CompanyCode).Width(75); columns.Bound(o => o.UnderwritingClassification).Width(75); columns.Bound(o => o.FormalTransactionAddressRecipient).Width(75); columns.Bound(o => o.AgencysBrokeragesIDforInsured).Width(75); columns.Bound(o => o.InsuredsNameIndividual); columns.Bound(o => o.InsuredsTelephoneNumber).Width(100); columns.Bound(o => o.PolicyExpirationDate).Format("{0:MM/dd/yyyy}").Width(150); columns.Bound(o => o.InsuredsAge).Width(50); columns.Bound(o => o.TransactionDate).Format("{0:MM/dd/yyyy}").Width(150); columns.Bound(o => o.LineofBusinessCode).Width(50); columns.Bound(o => o.FullTermPremium).Width(75); columns.Bound(o => o.LossCount).Width(75); columns.Bound(o => o.ProducerName).Width(125); columns.Bound(o => o.UnderwriterId).Width(75); columns.Bound(o => o.Id).Hidden(true); }) .Scrollable(c => c.Height("550px")) .DataBinding(dataBinding => dataBinding .Ajax() .Select("_CustomerSearch", "Prospects") ) // .Groupable() .Scrollable() .Pageable(paging => paging.PageSize(20) .Style(GridPagerStyles.NextPreviousAndNumeric) .Position(GridPagerPosition.Bottom) ) .Filterable() .Sortable() .Footer(true) .Render();