I am creating my first MVC Contrib Grid, and am having a few issues with formatting. I have had to use some html to create one of my columns as it was the only way I could get it the way I wanted it, but it means I now have an empty column at the start of my grid. I also have 2 more columns than normal which knocks my headers out of sync. How can I solve this, the problem is caused by the first column in my code below :
@Html.Grid((List<Standing>)ViewData["afceaststandings"]).Columns(col =>
{
col.For(p => "<td style='border-bottom:0px;border-left:0px;border-right:0px;'><img align='left' src='../../../content/images/gameplan/helmets/" + Standing.RemoveSpaces(p.Team) + ".jpg' /></td><td style='valign:center;text-align:left;border-bottom:0px;border-left:0px;border-right:0px;width:135px;'>" + p.Team + "</td>")
.Named("Team").Encode(false)
.Attributes(@class => "left");
col.For(p => p.Coach)
.Named("Coach")
.Attributes(@class => "left");
col.For(p => p.Won)
.Named("Won");
col.For(p => p.Lost)
.Named("Lost");
col.For(p => p.Tied)
.Named("Tied");
col.For(p => p.PointsFor)
.Named("For");
col.For(p => p.PointsAgainst)
.Named("Agst");
})