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?
You can also specify the same html attribute in the helper itself as follows.
@Html.TextBoxFor(model => model.Cost, new { tabindex = 1 })
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With