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
1
vote
1 answer

Kendo style issue - UI elements out of place

I have a Kendo DropDownList on an Angular MVC project. Chrome (Version 40.0.2214.111 m) and IE10 renders it as 2 elements side-by-side. This issue remains with all Kendo elements with 2 HTML elements, such as NumericTextBoxs. Is this a bug? Is…
1
vote
1 answer

Kendo NumericTextBox - prevent autocorrect when entering lower than Min value

I have an ASP.NET project where I use a Kendo Numeric TextBox element. I've set a min value of 200 (in the example) and when the user enters a lower value, the input changes automatically to the min value. Is there any way, or a property, that…
javiazo
  • 1,892
  • 4
  • 26
  • 41
1
vote
1 answer

Kendo grid rounds figure on edit?

I am using Kendo grid for editing data. My problem is that when I edit a cell, it rounds the figure to two decimal places, even if the format of the cell is 4 decimal places. Why its behaving like this?
sony
  • 1,453
  • 3
  • 35
  • 79
1
vote
1 answer

Kendo NumericTextbox: Restrict user from entering certain number of decimal places

I have a numeric textbox like this: @(Html.Kendo().NumericTextBoxFor(model => model).Format("c").Decimals(2).Spinners(false)) But this still allows the user to enter more than 2 decimal places in edit mode which gets rounded up or down when it…
Kaladin
  • 693
  • 2
  • 11
  • 20
1
vote
2 answers

Increment/Decrement to only odd values in Kendo Numerictextbox on up/down spinners/keys

I have a Kendo NumericTextBox. When some certain field has some certain values,the range of values for that NumericTextBox would be only odd values. Setting step to 2 will work if current value is odd value. So if user enters some value like 22 and…
rafoo
  • 1,095
  • 1
  • 11
  • 14
1
vote
1 answer

angular-kendo UI, NumericTextBox, cant display zero value

When I set initial value of variable to "0", then NumericTextBox field cant show this value. Code:

Dmitry Skryabin
  • 1,584
  • 2
  • 10
  • 15
1
vote
1 answer

KendoUI NumericTextBox doesn't hold values right

Using a Kendo UI numeric text box, I am having an issue with getting it to retain the number given between clicks. Here is my example...
Ciel
  • 4,290
  • 8
  • 51
  • 110
1
vote
1 answer

Wrong value for NumericTextBox

I have a simple NumericTextBox in a form. The problem is my value is always multiplied by 100. So if I start with 8.5, it will show 850 (and save 850), next time 85000, etc. Also, if I try to enter a decimal (8.5), it fails. This value is correct:…
GaZ
  • 39
  • 1
  • 4
  • 10
1
vote
1 answer

Kendo NumericTextbox not showing digits after decimal point

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

Kendo NumericTextbox not showing correct decimal value

I'm defining a Kendo numeric textbox in my MVC 4 project as indicated below @(Html.Kendo().NumericTextBoxFor(m => m.Rate) .Name("Rate") .Decimals(2) …
Andre Lombaard
  • 6,985
  • 13
  • 55
  • 96
1
vote
1 answer

Change width of a kendo numerictextbox at runtime

I'm using Kendo UI numerictextbox. I need to change the width of a numerictextbox at runtime, according to external conditions. After invoking kendoNumericTextBox, for some events in the javascript I would like to change the width of the input part…
cortomaltese_marcof
  • 165
  • 1
  • 6
  • 16
1
vote
1 answer

Persisting the default value of the numeric text after deleting entered value

Have a look at the sample here. The problem I have is that I need to have 0.00 value remain in the numerictextbox even though the value is deleted in the control. At the moment it appears as empty on the UI. Can anyone advise the cleanest solutions…
DotNetShark
  • 159
  • 4
  • 10
1
vote
1 answer

Value changed in NumericTextBox on 18 digit number

I have noticed that in a NumericTextBox when i add 18 or more digits in the field the numbers are changed. For example when add the number "11111111111111111" the number is changed automatically to "11111111111111112" . I have noticed the same…
Stephan
  • 696
  • 15
  • 37
1
vote
1 answer

kendo numerictextbox in clienttemplate - issue with dot in name

I am doing following in kendo grid: columns.Bound(x => x.Item.Equity) .Format("{0:f2}") .Width(100) .HeaderTemplate("Equity
Meta") .ClientTemplate(Html.Kendo().NumericTextBox() .Name("mp_#=Item.Id#") .Min(0) …
1
vote
1 answer

Remove NumericTextBox widget from textbox

I have found some answers that explain how to remove the Kendo UI kendoDatePicker widget from a textbox here http://www.kendoui.com/forums/ui/general-discussions/method-for-removing-controls.aspx and here…
Stephan
  • 696
  • 15
  • 37