I'm looping through rows and trying to make use of my DataTable Model.
<td>@Html.DisplayFor(d => d.Rows[i].ItemArray[j])</td>
Im passing in five values per Row, per ItemArray, the first two are strings, the other three are strings but are either "True" or "False". I thought DisplayFor would detect this and create a CheckBox for the boolean strings.
I get five strings. Do I need additional params?