or
Hi,
I have a pivot grid where some of the fields holds "long" texts. Sometimes the “rows” in the grids are not aligned correctly with the “column rows” – especially when the text wraps. I tried my example in a completely empty project on a page having only the pivot grid but the problem does not go away (no CSS or other layout applied).
(IE9)


public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { ClientsContext db = new ClientsContext(); var query = from b in db.Clients orderby b.LastName select new { Client = b.ClientId, First = b.FirstName, Last = b.LastName, County = b.CountyName, City = b.City }; GridView1.DataSource = query.ToList().Take(100); } } }
Your support will be greatly appreciated.
G

