This question is locked. New answers and comments are not allowed.
Hi, the columns header of my grid have a different width than the columns in a row. This is my code, I also attached an image. Thanks.
<%= Html.Telerik().Grid((List<Revenue.Model.Producto>)ViewData["Productos"]) .Name("gridProductos") .Columns(columns => { columns.Bound(c => c.Codigo).Width(160); columns.Bound(c => c.Descripcion).Width(270); columns.Bound(c => c.FechaAlta).Width(150); columns.Bound(c => c.FechaBaja).Width(150); }) .DataBinding(dataBinding => dataBinding.Ajax().Select("ObtenerProductos", "Producto")) //.ClientEvents(events => events.OnRowSelect("OnRowSelect")) .Scrollable() .Pageable() .Sortable() .Filterable() .Selectable()%>