kendo ui numeric textbox

kendo ui numeric textbox

Hello everyone, I am going to share the code sample for kendo ui numeric textbox for select the numeric value by changing and spinning the textbox.






Table of Contents

1. MVC 5 code sample for Kendo ui numeric textbox
2. HTML and jQuery code sample for kendo ui numeric textbox            

MVC 5 kendo ui numeric text-box 

 @(Html.Kendo().NumericTextBox()
       .Name("txtMonthSelection")
       .Value(6)
       .Min(0)
       .Max(100)
       .Format("p0")
       .Events(m => m.Change("onChangeText"))
 )

<script type="text/javascript">
    function onChangeText() {
        console.log(1);
    }
</script>


jQuery kendo ui numeric text-box

HTML code

<input id="txtMonthSelection" />

JavaScript code

<script type="text/javascript">
    $(document).ready(function () {
        $("#txtMonthSelection").kendoNumericTextBox({
            value: 6,
            min: 0,
            max: 100,
            format: "p0",
            decimals: 2
        });
    });
</script>
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

kendo ui numeric textbox kendo ui numeric textbox Reviewed by Anil Singh on 4:13 AM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^