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
2
votes
2 answers

How to change culture for kendo numericTextBox

I want to change culture for a kendo numericTextBox. For example from en-EN in ro-RO, so that the text from the upArrow would be translated in Romanian. I tried setting culture in the kendo.numericTextBox.js, but it does not work. Do you have any…
2
votes
1 answer

Kendo Knockout: NumericTextBox show validation message on inserting more than max value

I am using the kendo-knockout library. I have a numeric text box widget with a max value of 20. If You enter greater value the widget will round it to the max value. So if You enter a value of 50 with the keyboard and lose focus from the input or…
Mdb
  • 8,338
  • 22
  • 63
  • 98
1
vote
1 answer

How can I change a numeric textbox value using code?

I have a numeric textbox as follows: How can I set the value in code? The things I've…
CompanyDroneFromSector7G
  • 4,291
  • 13
  • 54
  • 97
1
vote
0 answers

Kendo Numeric text box for GBP Currency in angular 5

I was working with kendo numeric text box with currency format. As the below code which you provided in the sample data. It was working fine with the ISOCode of USD and EUR. I was trying to get the currency symbol for GBP '£', i'm failing to get the…
1
vote
3 answers

Kendo MVC Grid - NumericTextBox Change event not triggered

I have a kendo grid which contains a numeric text box in each row. I want to detect change and spin events of these numeric text boxes, but the events does not trigger for some reason. The Kendo grid…
1
vote
1 answer

Show error when user types decimal character in KendoNumericTextbox

Using KendoUI for jQuery. A new requirement has lead us to changing a KendoNumericTextbox from it's default settings to show only the integer value, as well as, alert the user in case they tried to input the decimal character. I see that Kendo shows…
1
vote
1 answer

How can we format a currency using culture group size in Kendo numeric text box?

I am using Kendo numericTextBox to display the currency. I have a requirement to format the value based on the currency selected. I am able to format the currency correctly for "en-US" and "de-DE" but I'm having trouble to format the currency…
1
vote
1 answer

How to set culture to "currency" numeric textbox without affecting other numeric textbox?

I want to know how we can set/change culture dynamically to 'currency' format numeric controls without affecting other numeric controls in Kendo. Scenario : I have 9 kendo numeric text box out of which 4 are of "Currency" format. I have to display…
1
vote
1 answer

KendoNumericTextbox not updating when value set

I am having trouble updating kendoNumericTextBox when I update the val it will not show until I put my cursor into the textbox. $(document).ready(function () { $('#txtCorpEl').kendoNumericTextBox({}).data("kendoNumericTextBox"); …
Micah Armantrout
  • 6,781
  • 4
  • 40
  • 66
1
vote
2 answers

Kendo UI - How to localize tooltip of spin boxes in NumericTextbox control?

How to localize/change the text of tooltip of spin boxes in Kendo UI NumericTextbox control?
surajnaik
  • 725
  • 2
  • 10
  • 26
1
vote
1 answer

Getting Formatted Value in NumericTextBox

When i type the value 123456 in the numeric text box it displays with comma values like 123,456.00 If we access the value it will give me 123456. Now i have a requirement in which i need to get the display value (123,456.00). Is there any way to get…
Thomson
  • 143
  • 6
1
vote
1 answer

how can make kendo ui numerictextbox don't lost formats when input value?

When i'm input values in kendo ui numeric, it's format has lost. Example: 1,234,456 -> when focus show -> 123456 Can anyone help to solve this? My code