I have some short questions about the Webgrid....How can I put in a column the current number ? (I'm using EF)...How can I display a string instead of a integer ?
(Let's say I have a int field ...height... and if it's between 1.50- 1.60 I would like to se...
In my Razor view, I have this webgrid:...@{
var grid = new WebGrid(Model, canPage: false, selectionFieldName: "VendorClassID", canSort:false);
}
@grid.GetHtml(
headerStyle: "header",
htmlAttributes: new{id = "tableGrid"},
tableStyle: ...