clearButton Boolean
(default: false)
If set to true
, will render a button that can be used to clear the value.
Example - disable the widget
<input id="textbox" />
<script>
$("#textbox").kendoTextBox({
value: "John",
clearButton: true
});
</script>