Questions tagged [kendonumerictextbox]

The Kendo NumericTextBox is a Kendo that can convert an INPUT element into a numeric, percentage or currency textbox.

The NumericTextBox widget can convert an INPUT element into a numeric, percentage or currency textbox. The type is defined depending on the specified format.

The widget renders spin buttons and with their help you can increment/decrement the value with a predefined step.

The NumericTextBox widget accepts only numeric entries.

The widget uses kendo.culture.current culture in order to determine number precision and other culture specific properties


Related tags

95 questions
0
votes
1 answer

Decimal value set to null in model when posting

I have a Kendo NumericTextbox @(Html.Kendo().NumericTextBoxFor(m => m.SomeDecimal) .Name("SomeDecimal") .Min(0) .Max(99999999) …
Andre Lombaard
  • 6,985
  • 13
  • 55
  • 96
0
votes
1 answer

KendoUI Template with Observable with NumericTextbox

I have the following KendoUI template bound to an observable. When I push a new item to the observable array, how do I apply the kendoNumericTextBox to only the new item in the template? If I apply by class, it has a strange effect of doubling…
0
votes
1 answer

How can I have kendo NumericTextBox keep focus during highlighting in a kendo window?

I have a kendo window that contains a kendo numeric text box: $('input').kendoNumericTextBox({ decimals: 2, spinners: false }); $('#win').kendoWindow({ modal: true, width: "969px", height: "646px", title:…
James
  • 2,876
  • 18
  • 72
  • 116
-1
votes
1 answer

kendo numeric textbox mask

I need to type big numbers in kendonumeric the problem is 3 digit separator only work after lost focus I need 3 digit mask apply during type like http://robinherbots.github.io/jquery.inputmask/
Amir Paziraee
  • 86
  • 2
  • 8
-6
votes
1 answer

How to add numbers from textbox together in Visual Studio 2012

Let's say for example there are two textboxes: in one textbox the user enters "5", then on the second textbox the user enters 5 numbers "1 2 3 4 5" the computer has to add those 5 numbers from the textbox two together and display them. How can I…
1 2 3 4 5 6
7