Questions tagged [numpad]

A numpad or numeric keypad is the small, palm-sized, seventeen key section of a computer keyboard.

A numpad or numeric keypad is the small, palm-sized, seventeen key section of a computer keyboard.

120 questions
0
votes
1 answer

UITextField's tag reset when its keyboard is set to number pad?

I have a number field in which i want my customer to benefit number pad. I am giving tags to text fields in order to handle next/done button in a textFieldShouldReturn method. But when text field's keypad is set to number pad, its tag is reset. How…
erdemgc
  • 1,701
  • 3
  • 23
  • 43
0
votes
1 answer

Adding Next/Done buttons to NumberPad on IOS?

I need to implement next/done buttons to number pad. I am using the code below. But i am taking an exception while selecting keyboard view. index 1 beyond bounds [0...0] Here is my code; //doneButton initialisation doneButton = [UIButton…
erdemgc
  • 1,701
  • 3
  • 23
  • 43
0
votes
1 answer

Putting negative sign on iphone numberpad

I need to have a negative sign on my iphone numberpad. I figured out how to a button to a toolbar over the numberpad. Here's a code snippet: UIToolbar* numberToolbar = [[UIToolbar alloc]initWithFrame:CGRectMake(0, 0, 320,…
0
votes
4 answers

How to create a NumberPad

I am trying to create a simple number Pad. I am getting the information to the TextView just fine BUT each time I click on a new Button it removes the old one. How do I keep what was in the TextView and add what is new. You push 1 it goes to…
SmulianJulian
  • 801
  • 11
  • 33
0
votes
3 answers

when click in EditText numberpad comes with footer layout

I have made a simple android activity with some edit texts and some TextVies and "header" and "footer" layouts,Now all is working well,but at runtime ,when i click on any on EditText the numberpad popups and comes with my "footer" layout.I have put…
jimmy cool
  • 147
  • 3
  • 5
  • 14
0
votes
1 answer

How to get a decimal point from a virtual number pad?

I am trying to get the Decimal point to display with the click of an GUI button. I using the method below, which works fine for the numbers but not the decimal point. Any advise would be great. thanks private void displayWeightedquantity(ActionEvent…
Adesh
  • 937
  • 4
  • 11
  • 17
-1
votes
2 answers

How do I dismiss the number pad keyboard?

In Xcode I selected the Number Pad under Keyboard Type for a label. It works fine, but I cannot dismiss the keyboard and it's blocking important content. How do I get the number pad to close?
-1
votes
2 answers

How to append textfield with "0," if is empty and user clicked on comma/dot separator on a decimal numpad

How could I detect if user clicked on comma or decimal numpad, so if a textfield is empty and the user clicked on comma or dot decimal separator on a decimal numpad I would like to append textfield text with "0,"? I know that I could use…
miki
  • 75
  • 9
-1
votes
2 answers

In Vim, the 5-key on the numeric keypad inserts a line above the current line with "E"

While using Vim under Linux Mint 20.2 (with NumLock off), when I hit the NumPad center key (5), a line is inserted above the current line, a capital E appears, and I am left in Insert mode. I often mistakenly hit the 5 key when trying to navigate…
SGeorgiades
  • 1,771
  • 1
  • 11
  • 11
-1
votes
1 answer

Jquery numpad input problems

hopefully someone can help with jquery numpad. The problem is that when you click on the input field and you click on the numbers, than the code is dublicating. I mean there is two input fileds and when you type then the numbers are dublicating into…
-1
votes
1 answer

Float is not recognizing numbers with a "," between it

When using the UIKeyboardTypeNumberPad option, the button in the bottom left will be a ",". But I want a ".", not a ",". Is it possible to change this? Can I add an extra button to the NumberPad? Or can I change every "," with a "."?
-2
votes
1 answer

Numpad in python with a gui

I'm trying to make a simple numpad made with guizero in python, where each number has a button, and when the buttons are pressed, they return their number into a text box, where the text box had the PIN entered with the onscreen numpad or by…
benbayliss24
  • 33
  • 1
  • 5
-2
votes
1 answer

How to show “Done” button on iPhone number pad in ios 9

- (void)keyboardWillShow:(NSNotification *)note { // create custom button UIButton *doneButton = [UIButton buttonWithType:UIButtonTypeCustom]; doneButton.frame = CGRectMake(0, 163, 106, 53); doneButton.adjustsImageWhenHighlighted =…
L.Dave
  • 1
  • 2
-2
votes
2 answers

Numpad not working even after changing different keyboards

My numpad of keyboard is not working in any way. I have tried several times by switching different key boards and switching among USB ports.
Affan Shahab
  • 838
  • 3
  • 17
  • 39
-3
votes
1 answer

How can I disable the browser numpad functions with Javascript/HTML

I want to use the numpad keycodes in my webpage, but there are already predefined functions for the numpad keys. For example, numpad key 4 referes to the keycode actions for the left arrow instead of just doing nothing. So I am just searching for…
1 2 3 4 5 6 7
8