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
4 answers

Adding a % sign to a percentage in Kendo NumericTextBox

Trying to add a % sign to a number in a Kendo NumericTextBox. They suggest escaping the % sign as such: $("#numeric").kendoNumericTextBox({ format: "# \%" }); but when I give it a value of 3, it still gives me 300%! From the Kendo…
MonOve
  • 1,091
  • 13
  • 34
1
vote
1 answer

NumericTextBox with 4 decimal places

I'm guessing that with the impending changes to the way Kendo's forums work (only paid customers) there's going to be little chance of getting a question answered on there, so I'll try here instead... I've setup an editable grid that's using custom…
Mat
  • 1,668
  • 4
  • 23
  • 40
0
votes
0 answers

Why kendo mvc grid numeric integer column(numeric text box) is becoming zero , when I give decimal values to it

I am having kendo mvc grid and one of its column is numeric text box and it is of type integer , but when I try to give decimal values to numeric text box ,it is becoming zero , but it should get rounded to nearest integer or should not accept…
0
votes
1 answer

Set the numerictextbox width in symbols

We know that is possible to set the width of a input text as number of symbols via the size attribute. 1
2
3
serge
  • 13,940
  • 35
  • 121
  • 205
0
votes
1 answer

NumericTextBox has incorrect currency symbol

I can't get the correct currency symbol to appear in my numeric textbox, even though the locale is set correctly. I know it's set correctly because this: mounted() { var culture = kendo.culture(); console.log(culture.name); } results in…
CompanyDroneFromSector7G
  • 4,291
  • 13
  • 54
  • 97
0
votes
1 answer

Kendo Ui numeric text box spinner

I used both methods to display kendo-numerictextbox with spinners but it's showing a normal text box without spinner buttons
0
votes
1 answer

Kendo Numeric Text Box remove trailing zeros

I want to have a numeric textbox which can display these numbers like that : Case 1 : 1,25 display 1,25 Case 2 : 1,50 display 1.5 Case 3 : 2,00 display 2 I just want to remove trailing zeros while playing with formats but I never find the right…
0
votes
1 answer

text color in kendo-numerictextbox in KendoUI for Angular

I want to change the text color in a kendo-numerictextbox for KendoUI for Angular. The style attribute has no effect. With Jquery we can change the style but how can we do this in KendoUI for Angular ?
0
votes
1 answer

Kendo Numeric text box custom validation for percentage value

We are trying to display a validation error message by overriding the default behavior of Kendo numerictextbox for displaying percentage value. our expectation is to provide a custom message when user type in any value more than 100. By default…
0
votes
1 answer

AngularJS: Kendo Clear all NumericText boxes of 0 when clicked/tapped

In AngularJS I have an unknown number of NumericTextBoxes (they are made in an ng-repeat): When a user clicks any…
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
0
votes
0 answers

Kendo numeric text box error: Uncaught TypeError: $(...).data(...).value is not a function

I'm trying to get and set kendonumerictextbox values, but I'm getting this error in the browser console: Uncaught TypeError: $(...).data(...).value is not a function This is how I'm trying to get the value: var limEfect =…
0
votes
1 answer

Angular 4 kendo numerictextbox Percentage issue

If I enter 5 I want to display 5% but it is rendering as 500%. How can I display?
user3194721
  • 765
  • 4
  • 14
  • 47
0
votes
2 answers

Kendo NumericTextBox with step and rounding

I want to setup kendoNumericTextBox to allow user input any integer number and set step to 1000. But when user enters any value and use spinner, it should update to next multiple of step. For example: enter 123, press spin up, value will be…
Raptor
  • 392
  • 1
  • 4
  • 21
0
votes
1 answer

Kendo Numeric Textbox w. Custom Format - Not Working

I have a large application that uses a lot of kendo numeric textboxes. As part of my current project, I have added a custom class to all of these elements. My textboxes will look something like: @(Html.Kendo().NumericTextBox() …
Mark
  • 4,773
  • 8
  • 53
  • 91
0
votes
3 answers

Set property of a span in javascript

I would like to set the width of a span, I succeded in getting the right element. I already tried : $(".k-widget .k-numerictextbox")[0].style.width=60; //the next one gives VM37616:1 Uncaught TypeError: $(...) //[0].style.setAttribute is not a…
Benoît
  • 143
  • 1
  • 2
  • 15