selectOnFocus Boolean(default: false)

When set to true, the text of the input will be selected after the widget is focused.

Example

<input id="numerictextbox" />
<script>
$("#numerictextbox").kendoNumericTextBox({
    selectOnFocus: true
});
</script>
In this article