Kendo Numeric Text Box setting min value
This is to send to the Kendo Team. We do not want the text box to set the min/max value when the number input is out of range.
HTML
<script src="http://cdn.kendostatic.com/2013.2.716/js/kendo.web.min.js"></script>
<link rel="stylesheet" href="http://cdn.kendostatic.com/2013.2.716/styles/kendo.common.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2013.2.716/styles/kendo.blueopal.min.css">
<div id="myForm">
<input id="box" data-type="number" step="50" />
<button id="check">Check!</button>
</div>
<div id="status">
JavaScript
$(document).ready(function() {
$("#box").kendoNumericTextBox({
min: null,
max: null
});
var val = $("#box").kendoValidator().data("kendoValidator");
$("#check").click(function() {
check();
});
var check = function() {
if (val.validate())
{
$("#status").text("valid");
} else {
$("#status").text("invalid");
}
};
$("#box").blur(function() {
check();
});
});