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
16
votes
3 answers

How can I refresh value kendo numerictextbox?

I have a kendoNumericTextBox. I have code that sets the value of the input element associated with the kendoNumericTextBox. For example, the code calls: $('#myId').val('test'); Unfortunately, the kendo numeric text box doesn't automatically reflect…
James
  • 2,876
  • 18
  • 72
  • 116
7
votes
1 answer

How to put the limit for numeric textbox in kendogrid column filter menu?

Here issue is in the kendogrid column menu filter is not having limit to filter i don't need the negative value .In second image while enter the arrow it's going negativeve values how to restrict the negative value?
stpdevi
  • 1,114
  • 3
  • 15
  • 36
5
votes
3 answers

Update Kendo NumericTextBox with MVVM on spin

Take a look at the MVVM example here: How can I get the MVVM value to update on the spin event (clicking the up or down arrows) Here is what I tried: In the spin event, I tried to do $("#ntb").getKendoNumericTextBox().trigger("change"); That…
Matt
  • 25,943
  • 66
  • 198
  • 303
4
votes
2 answers

how can i clear the value of the kendo numeric textbox?

I have done this and it's not working $("#txtLowValue").val(''); $("#txtLowValue").val(); and this is the text box $('#txtLowValue').kendoNumericTextBox({ format: "##", decimals: 0, spinners: false, min: 0, max: 999998 });
omid
  • 61
  • 1
  • 1
  • 6
4
votes
1 answer

Kendo Numeric Textbox Text Padding

I have a Kendo NumericTextBox in which I would like to right-align the text with some padding. Here's telerik's demo page: http://demos.kendoui.com/web/numerictextbox/index.html I have applied the following style, which aligns the text ok: /*Right…
Andrew Walters
  • 4,763
  • 6
  • 35
  • 49
4
votes
1 answer

How I can set and get template columns value/text in kendo Grid

Consider I have a kendo grid like following http://jsbin.com/uxumab/1/ It has ItemId, Qty, Price and Total(template) column. I want to make Qty column editable and want to change total column value with the change of Qty column. Finally I want to…
Hasibul
  • 569
  • 2
  • 6
  • 21
4
votes
2 answers

Disable kendo numerictextbox widget on double click using the kendoui and jquery

I have this html. On double click I want to disable/enable the dropdown:
Mdb
  • 8,338
  • 22
  • 63
  • 98
3
votes
1 answer

Dyanamically change the font color of Kendo Numeric textbox

I am using Kendo Numeric text box to display decimal values.I want to change the font color based on the user input.How to achieve this?
3
votes
1 answer

kendo ui, angular require validation for numeric text box

I am trying to use a kendo numeric text box with angular validation (ng-required) however I'm not able to get it working. The ng-required attribute on this element has no effect on the form validation status. From my understanding, the reason why…
3
votes
3 answers

Do not show decimals in Kendo UI numericTextbox when declaratively binding in template

For some reason my numericTextbox is still showing a decimal and numbers after the decimal while in a kendo template. I followed the other answers by having the attributes of decimals="0" and format="#" but to no avail. code: …
TheDudeAbides
  • 124
  • 2
  • 2
  • 9
2
votes
2 answers

How can I sum multiple Numeric textbox value?

I have multiple Numeric textbox as shown below in the snippet, all are currency format textbox's. How can I sum the values of textboxes in Class Name Charges and display the total sub-total-Of-Charges textbox and subtract if any value in textbox's…
2
votes
1 answer

How to disable dots on Kendo UI NumericTextBox?

I need to make a numeric field only integer, so that the field does not accept decimals. I would not even like the field to approximate, simply not accepting points or commas. Based on the culture, it accepts the numeric separator (eg EN is the…
i.signori
  • 585
  • 3
  • 16
2
votes
3 answers

Kendo NumericTextBox Percent Sign

I am Trying to add the percent sign to the grid. I have found some posts which using this workaround. But this does not work. "# \%" --> causes a javascript error @(Html.Kendo().NumericTextBoxFor(m => m) .HtmlAttributes(new { style =…
Marko
  • 1,291
  • 1
  • 21
  • 37
2
votes
3 answers

How to create kendoNumericTextBox in kendo grid cell?

Is there is any way to create widgets in kendo grid cell template? here is the sample code. columns: [{ field: "Name", title: "Contact Name", width: 100 }, { field: "Cost", title: "Cost", template: "
BalaKrishnan웃
  • 4,337
  • 7
  • 30
  • 51
2
votes
1 answer

How can I prevent a user from typing more then 4 uinits of precision in a kendo numeric textbox

I have a requirement to allow a user to type a decimal with 4 units of precision. But only display 3. Is there a way to have the kendo-ui numerictextbox prevent more then 4 units of precision? $element.kendoNumericTextBox({ …
Aaron Fischer
  • 20,853
  • 18
  • 75
  • 116
1
2 3 4 5 6 7