The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
110 views

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 ...
0
votes
1answer
76 views

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 ...
0
votes
0answers
161 views

UITextField within a UIScrollview will not accept input

I have an app that presents a UIAlertView which has a subview that is a UIScrollView which has anywhere from 6-14 UITextviews as subviews. Originally, I did not have the scrollview, when space got too ...
0
votes
0answers
659 views

jquery getting correct ascii character from keyInput

I am trying to restrict the user input to ascii characters. It works on regular keypad, but doesn't work when I press keys on numeric keypad. I tried event.keycode and event.which both result the ...
0
votes
0answers
220 views

How to use the Numberpad from iPhone on iPad

I'm trying to use the numberpad from iPhone on the iPad but it doesn't work. Is it possible to set the numberpad from iPhone into a popover on iPad? Something like this?
20
votes
5answers
482 views

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, ...
2
votes
3answers
3k views

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 ...
0
votes
1answer
2k views

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

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 ...
1
vote
3answers
510 views

how to show single dot using custom Number pad in iphone?

i am creating custom NumberPad if (([[[UIDevice currentDevice] systemVersion] doubleValue] >= 4.1)) { inputBoxTextField.keyboardType = UIKeyboardTypeDecimalPad; } my problem is, i want to ...
0
votes
1answer
663 views

Displaying number pad

There is delegate method for textfeilds to display the number pad . Similar to that I want to display it when clicking a button.Is it possible?? Since my app deals with phone calls,I want to make a ...
1
vote
1answer
339 views

how to detect ios numberpad delete press

dose anyone know how to detect a delete press from a numberpad in ios?
1
vote
1answer
582 views

Numberpad backspace not updating textField.text.length

I'm currently formatting my a textfield in xcode, every 5th character I add a hyphen. However I'm having alot of trouble I am currently wanting to check my textfields.text.length then once the length ...
0
votes
1answer
709 views

Xcode Custom Keyboard (DOT) please help

im trying to make a custom keyboard (a numberpad) for Iphone :) but i cant find out to code the dot/"." please help me!... thank you :) i have got this: - (IBAction)dot:(id)sender{ numberr.text = ...
0
votes
1answer
616 views

Xcode : Number pad with point for comma

I have a number pad with done button. But the user can only choose numbers without comma's. So i there a way to have a number pad with donebutton (wich I have) , integreted with punctation , or at ...
0
votes
2answers
250 views

custom done button for numberpads for more textfields in iphone

I have ten text fields in a view.In that i need 2 textfield for phone and zip code. So i want to display a numberkeypad when clicking phone and zip text field.I have created a custom done button using ...