How can I use Tab Order property for following code:
<td>
@Html.EditorFor(model => model.Cost)
</td>
I tried this:
<td tabindex=1>
@Html.EditorFor(model => model.Cost)
</td>
any suggestions?
How can I use Tab Order property for following code:
<td>
@Html.EditorFor(model => model.Cost)
</td>
I tried this:
<td tabindex=1>
@Html.EditorFor(model => model.Cost)
</td>
any suggestions?