I have inputs which are text boxes. I want to have it so that when I tab to the input, the contents of the input become highlighted. How do I do that?
Right now, the content of the input is not highlighted when I tab. Just the cursor goes to the input box, but nothing is highlighted.
I am using Kendo UI for the input boxes for ASP.NET MVC 4 application.
Here's a sample input box I have:
<td id="ViewTextBox">@(Html.Kendo().NumericTextBoxFor
<double>(model => model.View).Format("#").Decimals(0).Min(0) .HtmlAttributes(new { @class = "dPNumericbox" }) .Events(e => e .Change("BrowserSide.DP.ViewTextBoxChanged") ))
</td>