Questions tagged [numeric-keypad]

63 questions
1
vote
0 answers

html numeric keyboard plus comma sign

I've got an input that holds a valuta number. With I was able to force the numeric keyboard to show up on mobile phones. But I want to add the option to select a comma, preferably in the empty bottom left corner. Is this…
Paul van den Dool
  • 3,020
  • 3
  • 20
  • 44
1
vote
0 answers

How to override a driver and program on a keypad

I'm trying to reprogram an external numeric keypad and I was wondering how I could override the device driver and original programming it was given. This would be for hopefully a Windows device but if I couldn't do that, then possibly a linux…
Haley R
  • 11
  • 1
1
vote
1 answer

Create an HTML Numeric Keypad without layout
I am trying to create an HTML 'numeric keypad', like those found on some keyboards. I am stumped on how to do the layout without using a table. I am using Bootstrap (v3.1.1) so my first instinct was to attempt to use its col- classes to reproduce…
Jesse Webb
  • 43,135
  • 27
  • 106
  • 143
1
vote
0 answers

jquery.keypad with jquery.masked input

I am trying to mask the input from the jquery.keypad.js using the jquery.maskedinput.js plugin to mask into a date. But a simple textbox without keypad over it works fine. But I am not able to do it. html is:
dtksmsl
  • 239
  • 4
  • 14
1
vote
1 answer

how to make a javascript number keypad popup

i have a website with 3 pages. each page has a form with two input fields. i am trying to make a popup number-keypad that will populate what ever input field called it. below is that base code i keep coming back to.…
JHub42
  • 63
  • 2
  • 6
1
vote
2 answers

when pressed wil ++ or -- a value, numeric keypad

Using numeric keypad I have added a .switch handler which when clicked will bring the value back to '0' (test purpose only) If the value is +32 and the button is pressed I would like it to change to -32, vice versa. so far I have only gotten it to…
John
  • 3,965
  • 21
  • 77
  • 163
1
vote
2 answers

Keypad type conversion

I want to get numbers entered from my Arduino keypad (which are of type 'char') converted to type 'int' so I can use them in variables and use math. For instance, if I press key "5", how do i put it into a variable "keyPressed" and do "X =…
1
vote
1 answer

VB.NET 2008 - How Do I Make Button.click Event Perform both the enter and period(del) keys on the numerical keyboard?

How Do I Make Button.click Event Perform both the enter and period(del) keys on the numeric keypad? Code snippet: Private Sub frmCalc_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown Select Case…
legostyle
  • 11
  • 1
  • 2
1
vote
2 answers

How to do a number keypad in java

I trying to figure out how to do a number keypad in java. I'm recently started using java, still have so much to learn. The following is what I came up with so far but it only returns one char at a time. Still researching this, but would really…
Adesh
  • 937
  • 4
  • 11
  • 17
1
vote
1 answer

Is there a way to create a tabbed picker in iOS? Or somehow combine numpad + picker inputs?

I'm looking for a clean way to enable two interactions within one screen. For example: 1) User clicks on "Add Activity" button 2) User enters a number of standard units (e.g., 10 meters), and then picks an associated activity from a list (e.g.,…
0
votes
0 answers

Using STM32F4 to print keys pressed on a keypad

No idea why it won't work. Don't know where to start. I've look up everywhere to figure this out. I'm using an STM32F446RE controller with uVision software. The basic objective of this project is 2. Write the complete code for printing the pressed…
GucciDonut
  • 19
  • 1
0
votes
0 answers

Menu type display in LCD using 4x4 Keypad in Arduino

I am trying to display two menu type in 16x2 LCD display using keypad in Arduino. Here is the code; `#include #include #include byte rowPins[4]={9,8,7,6}; byte colPins [4]={5,4,3,2}; char keys[4][4]={ …
0
votes
0 answers

How to configure S-Lang (and ncurses) to read a1, c1, etc. keypad keys?

I want to be able to bind a1,c1,a3,etc. keys in Midnight Commander. However, the keys are not being treated specially when numlock is off – they should map to the given symbols ("a1",etc.) in the keymap file, however instead, they resolve to "home",…
psprint
  • 349
  • 1
  • 10
0
votes
2 answers

Numeric Keyboard with Kivy / KivyMD for MDTextField

How to make the Text Fields use the numeric android keyboard instead of the normal keyboard with all the letters? NOTE: I'm using KivyMD MDTextFields So when I click to write in the text fields a keyboard like this appears instead: Like in this…
Code Clickers
  • 85
  • 1
  • 10
0
votes
1 answer

How to activate numeric keypad on woocommerce checkout fields for mobile users?

Is it possible to activate number keyboard for mobile user in woocommerce checkout? I have customized woocommerce default checkout fields and some of these fields are just number (for example:Postal code, Phone, etc.). Most of my website visitors…