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

MVVM-KendoNumericTextBox restore previous value without triggering 'change' twice

I'm using Kendo MVVM and I have a kendo numerictextbox bound to a kendo observable. All I want is: when the user changes value, a confirm should pop saying something like 'are you sure?' if yes -> no problem, go on. if no -> NOTHING should…
0
votes
0 answers

How can I ensure Kendo Grid passes a numeric value with the correct separator to ASP.NET MVC?

I have a simple grid that uses a custom popup editor template. In the template, I'd like to use a Numeric Textbox. Due to localization, the application keeps trying to use a comma to separate decimals in the numeric values. When these values are…
Ivo Coumans
  • 759
  • 8
  • 23
0
votes
1 answer

KendoNumericTextBox password type

Does anyone know how to get a Kendo Numeric TextBox to display asterisks as the user types them in? type="password" does not work. Thanks. Here is my code:
xinthose
  • 3,213
  • 3
  • 40
  • 59
0
votes
2 answers

kendoNumericTextBox number and Decimal Format in Kendo Grid

I have Requirement like this.i should show format like 9999.000 in kendoNumericTextBox with in the grid how to do it .. note :After decimal point It should accept Only 3 zeros(3 decimal Points)
0
votes
1 answer

Want to display error message if value increases max value in kendo numeric textbox

I have a kendo numeric textbox. I have set the Min value to that as 1 and Max value as 31.If I enter a value greater than 31 I want to display an error message that "value must be between 1 and 31".If You enter greater value the widget will round it…
Navya Rao
  • 21
  • 6
0
votes
0 answers

How can I select inner content of inputbox when tabbing?

I have inputs which are text boxes. I want to have it so that when I tab to the input, the contents of the input become highlighted. How do I do that? Right now, the content of the input is not highlighted when I tab. Just the cursor goes to the…
Kala J
  • 2,040
  • 4
  • 45
  • 85
0
votes
1 answer

Custom kendonumeric max value more than 16 digits

I use NumericTextBoxFor to show amount in my application. I need to show 20 digits. Can I accomplish it using NumericTextBoxFor? I've been trying "max", but kendo just give 16 digits. @(Html.Kendo().NumericTextBoxFor(model => model.To) …
0
votes
1 answer

Kendo data attribute initialization not working

I'm creating a numeric text box with data attributes for the initialization but it does not seem to be working, can someone help to explain why or is this just a Kendo UI bug please? (documentation of how to use data attribute initialization) demo…
Anupheaus
  • 3,383
  • 2
  • 24
  • 30
0
votes
0 answers

Kendo Numeric TextBox in grid not firing change event in IE

Kendo Numeric TextBox in grid not firing change event in IE while lost focus is called with arrow keys, while I use tab at that time its working fine. Can anybody please help on the same?? $(textboxId).kendoNumericTextBox({ decimals:…
0
votes
1 answer

Kendo numeric format for SQL Server "money" data type

I'd appreciate any advice. I use a NumericTextBox for the SQL Server datatype money: @Html.Kendo().NumericTextBoxFor(model => model.AMOUNT) It displays the sum incorrectly. Like if the AMOUNT is 2000,00 in NumericTextBox it is shown as…
Gyuzal
  • 1,581
  • 10
  • 52
  • 99
0
votes
2 answers

Add positive sign in Kendo NumericTextBox

I have a Kendo NumericTextBox. This text box allows positive and negative numbers. As expected, negative numbers have a '-' prefix. Is it possible to prefix a '+' on positive numbers? I'm using ASP.NET MVC 5. Here's a code sample:…
abrar
  • 354
  • 2
  • 9
0
votes
2 answers

KendoUI Numeric box doesn't set ngModel correctly

If I initialize input box which has ngModel attached to it like this: angular.element(element.find("input")).kendoNumericTextBox({ decimals : 4, format : "#.####"), // to match step and format step : step, value : value, min : scope.min, …
Slaven Tomac
  • 1,552
  • 2
  • 26
  • 38
0
votes
2 answers

MVC KendoUI: how to disable NumericTextBox allowing an empty value?

I have a KendoUI grid which allows the user to update the values using inline mode. The problem is that I have two double attributes that doesn't allow null values, but however the NumericTextBox give me to set an empty value, and then accept it, as…
0
votes
2 answers

Kendo grid with numerictextbox tab out issues

I have a Kendo grid that I am using in a time entry application. The time entry covers a 2 week pay period, so I have 14 columns where the user can enter the number of hours worked each day for the given task. I also have columns for the task, an…
0
votes
1 answer

Find a collection of Kendo Numeric textboxes

I have a page containing a collection of Kendo NumericTextboxes. You can access a specific Kendo NumericTextbox using $("#idOfTheTextbox").data("kendoNumericTextBox") My problem is that I want to get the collection of Kendo NumericTextboxes so…
Andre Lombaard
  • 6,985
  • 13
  • 55
  • 96