editor & dataSource

by valchev

HTML

<script src="http://cdn.kendostatic.com/2012.2.710/js/kendo.all.min.js"></script>
<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.2.710/styles/kendo.common.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.2.710/styles/kendo.default.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.2.710/styles/kendo.mobile.all.min.css">
<input id="numbox" />

JavaScript

var numeric = $("#numbox").kendoNumericTextBox({
    placeholder: "numeric text box"
}).data("kendoNumericTextBox");

//remove the spinners
numeric.wrapper
       .find(".k-numeric-wrap")
       .addClass("expand-padding")
       .find(".k-select").hide();