Questions tagged [numeric-textbox]
17 questions
2
votes
2 answers
Removing comma from IntegerTextBoxFor
I have a question about the IntegerTextBoxFor from Telerik Extensions for MVC. I'm currently trying to remove the use of commas from it. Currently here is what I have.
Editor Template called Int32.cshtml
@model System.Int32
@using…

IyaTaisho
- 863
- 19
- 42
1
vote
1 answer
How to properly use NumericTextBox for the numbers with decimal points
sorry for my english, i do not speak this language very well. My question - is it even possible to use the Shield UI widget NumericTextBox as a parser for entering numbers with decimal points? I have not found a suitable parameter for it. When using…

Theodor Bolmann
- 11
- 1
1
vote
2 answers
add zero in numerictextbox field
I have numeric text box like that

neverwinter
- 810
- 2
- 15
- 42
1
vote
3 answers
How to clear the attribute value of an element using selenium webdriver
I have an element, which is kendo numeric textbox. It has values as well, I can get the value by using this code snippet driver.findElement(By.xpath("xpathlocator_value")).getAttribute("value"); but i want to clear the value and i want to update…

Lucan
- 83
- 1
- 4
- 11
1
vote
0 answers
C# Numeric textbox Shows exception after changing language From "En-Us" to Any global language in Control panel
I created an application which contains two numeric textboxes to which I've added an StartValue property.
Example
public decimal SValue {
get { return MValue; }
set { MValue = value; }
}
then
const string VALUE = "1.000";
private NumericTextBox…

user1764824
- 9
- 1
- 3
0
votes
1 answer
I'm using Inotify property change.... How does INotifyPropertyChanged work? how to use it?
I don't think this was covered in any tutorial that I've read or done. does any know how is this
line works? This is a sample code on how to use sfnumerictextbox, but its default property is object. I need it in double or integer so Inotify came…

chemobrain
- 7
- 3
0
votes
3 answers
HTML numeric input using Reactive forms is showing required validator error instead of Invalid pattern
I am working on an Angular 8 application and following reacting forms approach. Facing an issue with numeric text box and copying a sample code below.
Typescript:
this.sampleForm = this.formBuilder.group({
age: ['', [Validators.required,…

user3161958
- 25
- 2
- 11
0
votes
1 answer
Numeric textbox by JQuery dynamically
I've the following code to make a textbox numeric only. It's working fine.
$( ".numeric" ).keypress(function( evt ) {
evt = (evt) ? evt : window.event;
var charCode = (evt.which) ? evt.which : evt.keyCode;
if (charCode > 31 && (charCode…

s.k.paul
- 7,099
- 28
- 93
- 168
0
votes
1 answer
How to trigger autosave in a NumericTextbox Kendo UI Scrollbars
I would like to know how can I do autosave in a Kendo numeric textbox.
I create a little demo, I can do an autosave with normal input text, (autosave when lost focus or 2 sec without entering values), then I add a Kendo UI numeric textbox, works…

jolynice
- 514
- 1
- 8
- 25
0
votes
1 answer
kendo numeric textbox configuration for restricting only two decimal values while entering in textbox
kendo numerictextbox configuration for restricting only two decimal values while entered in textbox
please give the solution in jsfiddle if possible
For Example
The given input is 1666.66 if i enter third decimal value means it will not allow to…

Gobi Nath
- 1
- 3
0
votes
2 answers
Mootools Numeric Textox
I am looking for numeric textbox control based on mootools framework.
i'd be grateful if someone help me to find or implement this control.
thank you .
Alimz

Mironline
- 2,755
- 7
- 35
- 61
0
votes
1 answer
How to force a numeric textbox control not to accept empty string?
I have a winform app.
I am using a numeric textbox control.
My problem is that I can erase the value and leave the control.
When I do that - the value that was before I delete it is the value of the control,
but the display is an empty value.
It is…

subirshan
- 323
- 2
- 7
- 20
0
votes
4 answers
First letter should not digit in textbox?
Possible Duplicate:
How do I ensure a text box is alphanumeric but without a leading digit?
in my application i have textbox in that user can't enter digit is there any solution for this thank u

Surya sasidhar
- 29,607
- 57
- 139
- 219
0
votes
1 answer
telerik numerictextbox and telerik date picker styling in asp page
telerik numerictextbox and telerik date picker styling in asp page.
i want to change background color ,border color of telerik rad textbox, rad datepicker
.please help me i have try to do it by using style="....." but not working .
thanks in advance…

user1830210
- 31
- 2
- 9
0
votes
1 answer
radnumeric textbox allows ony 16 numbers
I have the following rad numeric textbox.
> MaxLength="20" MinValue="0" Visible="false"
> maxvalue="99999999999999999999" AutoCompleteType="Disabled">
>

Mridul Raj
- 1,001
- 4
- 19
- 46