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

Kendo numeric text box spinners appearing ever after set to false

In my 'incell' editable grid I set numeric text box in column editor function like as shown below. I've set spinners property to false. editor: function (container, options) { $('
PSR
  • 875
  • 2
  • 13
  • 37
0
votes
1 answer

Problems with decimal value in kendoNumericTextBox asp.net mvc

I have the following problem. Working with application in polish Culture, scripts kendo.culture.pl-PL.min.js and kendo.messages.pl-PL.min.js are loaded correctly, I can check it in console: after issuing kendo.culture() I get object {name: "pl-PL",…
vanpersil
  • 764
  • 1
  • 8
  • 26
0
votes
1 answer

Use DisplayFormatAttribute with Kendo NumericTextBox

I have model with DisplayFormat attribute public class MyModel { [DisplayFormat(DataFormatString = "{0:N2}", ApplyFormatInEditMode = true)] public decimal? Amount { get; set; } } In View i have @(Html.Kendo().NumericTextBoxFor(m=> m.Amount…
LP13
  • 30,567
  • 53
  • 217
  • 400
0
votes
2 answers

Copy paste numbers with comma in Kendo numeric text box

I have kendo numeric text box. If i type number like 123456, the widget automatically format the number with comma and dollar symbol as expected. However if i copy and paste number with comma, for example 123,456, the widget does not accept that as…
LP13
  • 30,567
  • 53
  • 217
  • 400
0
votes
1 answer

Kendo MVVM: How to bind a function to a Template inside a Template?

I prepared a simple dojo here: http://dojo.telerik.com/iQERE Scenario: I have an array within another array and I wanted to render it with a kendo template in a sort of table/grid. First array's items are the rows and inner array's items are the…
0
votes
1 answer

style input component in kendo-ui for angular2

I'm trying kendo ui for ng2. I've used the numericinput textbox but I can't find a way on how to style it, in particular I'm need to change the with 100%, how is this possible?
Carlo Luther
  • 2,402
  • 7
  • 46
  • 75
0
votes
1 answer

NumericTextBoxComponent kendo ui, how to use in reactive form, by setting the attribute formControlName (angular2)

I'm trying kendo ui's (Ver.RC0) NumericTextBoxComponent for angular2 but on the api there is no mention about the component attribute "formControlName". I'd like to do something like this to validate the form control in the…
Carlo Luther
  • 2,402
  • 7
  • 46
  • 75
0
votes
1 answer

How to set the decimal places of a number in Kendo UI model defenition?

I'm using a kendo ui editable grid with NumericTextBox. Usually in NumericTextBox the decimal places are limited to two i.e, if I enter 10.135 the value will be formatted to 10.14. But what I need is to get 10.135 itself. What is to be done here. My…
Nitheesh
  • 19,238
  • 3
  • 22
  • 49
0
votes
1 answer

NumericTextBox - Execute JS calculation as the user types numbers. Can it be done?

I have a numeric text box that allows entry for a unit price. As a user spins the number up, the unitPrice and the quantity are multiplied to create extended price. What I need is if the user types the value to have the calculation occur as well,…
corvair61
  • 1
  • 5
0
votes
1 answer

How to find if kendoNumericTextBox already has change event bound?

I have KendoNumericTextBox control and i am attaching 'change' event handler to it and then trying to find if it has change event handler attached. But $._data(element,'events') doesn't list 'change' event. $('#MyID') …
LP13
  • 30,567
  • 53
  • 217
  • 400
0
votes
1 answer

Could find kendoNumericTextBox by class name

I am trying to attach change event handler to the instance of kendoNumercTextBox. I am able to get the instance of kendoNumercTextBox control using its ID, however Im not able to get the instance using class name here is the code…
LP13
  • 30,567
  • 53
  • 217
  • 400
0
votes
1 answer

How to display blank kendo numeric text box on page load and still allow a min value

I have a kendo numeric text-box with a min value set to zero. I don't want the ability to input negative numbers. The problem is that the initial value gets also set to zero which messes up some validation. Is there a way to have the min be zero…
ArtisanSamosa
  • 847
  • 2
  • 10
  • 23
0
votes
1 answer

NumericTextBox Precision

I was trying to get the kendoNumericTextBox to display values as the following: 10.2 10.25 10.2504 I configured the numeric textbox like: $(".percentage-input").kendoNumericTextBox({ format: "n", min: 0, max: 100, …
Brian Mains
  • 50,520
  • 35
  • 148
  • 257
0
votes
1 answer

Kendo numerictextbox was clicked up or down

Can I know in which direction was clicked numerictextbox - up or down? $('').appendTo(container).kendoNumericTextBox({ min: 1, max: 9, …
Pasha
  • 621
  • 8
  • 21
0
votes
1 answer

How to make a dynamic input field as a numeric textbox in Kendo UI?

Here is my situation. I am making a dynamic form with a help of this article. Here you can see it (article demo) use kendo template .