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
98
votes
12 answers

How to add "Done" button to Numpad in iOS using Swift?

It works fine with the default keyboard, but I cant get it working with the numpad. Any ideas?
Dejan Skledar
  • 11,280
  • 7
  • 44
  • 70
37
votes
5 answers

html5 input type number with regex pattern in mobile

I'm trying to get regex pattern in input type number to show only numbers and dots. I tried something like this. Both are showing only numbers (0-9), but not displaying . (dot). I need to…
UI_Dev
  • 3,317
  • 16
  • 46
  • 92
22
votes
5 answers

JTextField Issues with Numpad

I've recently run into a strange issue with the Java JTextField. When I run the following code (see below), typing a "0" into the text field first sends a paste action, then types "0". For example, if "text" is copied to the clipboard, "text0" is…
lrAndroid
  • 2,834
  • 18
  • 27
12
votes
2 answers

Swift - Add dot in Number Pad Keyboard

How to add dot in Number Pad Keyboard? I want when I use notification UIKeyboardDidShowNotification a UIButton to appear over down left side of the Number Pad keyboard. This will be the frame of the button: let dotButton = UIButton(frame:…
Bogdan Bogdanov
  • 882
  • 11
  • 36
  • 79
9
votes
3 answers

iPhone Web App Number Pad with Decimal

Im struggling to find an answer for this one. I've found out how to make the keypad appear on a web app using the pattern string [0-9]* but that just shows the digits without a decimal! Anyone got a solution please? :) Thanks!
PapaSmurf
  • 1,035
  • 2
  • 14
  • 26
8
votes
2 answers

How disable change language in number pad in iOS Objective C?

I have texFiled I'm my view controller and i set number pad for that like this: self.phoneTextField.keyboardType = UIKeyboardTypeNumberPad; And now i want user just can enter english number in text field(can not change language)
reza_khalafi
  • 6,230
  • 7
  • 56
  • 82
8
votes
2 answers

count characters in input field and then submit

I want to make a "NumPad" where I can type in a 4-digit-keycode in an input field. After I click the four buttons, the submit-button gets pressed. I found a few code-snippets and it worked if I use the keyboard. This is how far I come: function…
Daniel
  • 113
  • 1
  • 7
5
votes
0 answers

Looking to add a done button when using UIKeyboardType.numberPad with SwiftUI

I have a TextField and using UIKeyboardType.numberPad for the keyboard entry (want integer only entries). This keyboard type does not come with a Return/Done key. I have struggled to find a way to add this to the keyboard. I have done this in…
Dan Schümacher
  • 225
  • 3
  • 8
4
votes
2 answers

How do you send NumPad keys using SendKeys?

I want to send the keystroke of NumPad keys (1-9). I tried to use: SendKeys.SendWait("{NUMPAD1}"); but it says System.ArgumentException: The keyword NUMPAD1 is invalid (translated) So i don't know the right keycode for the NumPad.
Regster Up
  • 113
  • 1
  • 2
  • 7
4
votes
3 answers

done button is not visible in number pad iOS 9 issue

this code is working in ios 6,7,8 but this all method is called in ios 9 but it is not visible. on number pad. here is my code. #import "ViewController.h" #define TAG_BUTTON_DONE 67125 @interface ViewController () @end @implementation…
jenish
  • 268
  • 3
  • 11
3
votes
3 answers

How to hide number pad using background Tap?

I study iOS SDK using this book and in 4 Chapter, when it tells you how to hide number pad with background tap I have a problem. I do that author says but nothing happened. How I can do this? What book's author says: 1)Create new method…
Alex Lapchenko
  • 283
  • 1
  • 5
  • 14
3
votes
1 answer

Can I get the iPhone number pad in an iPad app?

Possible Duplicate: UIKeyboardTypeNumberPad on iPad I want to give users the option of only inputting numbers. The number pad for iPad pops up with other symbols etc. Is it possible to get the iPhone version of the number pad in an iPad app?
msec
  • 252
  • 5
  • 20
3
votes
2 answers

Is there a way to show a number pad (preferably with a bubble) in a TextInput field using Kivy and Python? NEW ISSUE WITH CODE

I have an app where you input numbers (a lot) and it gets hard that the keyboard is also letters, I would like it to be just numbers (0-9), and a dot. Is there any way to do this using Kivy's .kv file and Python? I have tried input_type: 'number' in…
LucioRandy
  • 220
  • 1
  • 19
3
votes
2 answers

How to detect ios numberpad delete press

dose anyone know how to detect a delete press from a numberpad in ios?
tinhead
  • 385
  • 2
  • 10
  • 29
3
votes
1 answer

How can I set some css to a react NumPad component?

I have a react numpad component in my code and I need to change its size, but I cannot modify its CSS, theme or something like that properly. I've already realized that some style like colors or fonts may be changed in…
Maf
  • 696
  • 1
  • 8
  • 23
1
2 3 4 5 6 7 8