The textinput tag has no wiki summary.
12
votes
2answers
6k views
UITextField focus
How can I programmatically assign focus to a specific UITextField in a view? I have several fields and on view display, I'd like to put the cursor on a specific field, not the first one at top.
9
votes
4answers
3k views
HTML5 Search Input: No Background Image in Chrome?
I have been pulling my hair out trying to get Chrome to style my search input with a background image. Firefox has no problem, but I fear it's because it treats the input as a regular text input. Is ...
9
votes
6answers
12k views
Flex: Text Input that accepts number only
Need a code that only accepts numbers. Upon inputting, the code must check if it is number, if not, it must remove the entered key or not enter it at all
7
votes
6answers
2k views
Is there a way to disable the zoom feature on input fields in webview?
When a user clicks in an input field or textarea, the application zooms in.
Is there a simple way to disable it?
Currently have the meta tag:
meta name="viewport" content="width=device-width; ...
6
votes
2answers
546 views
Tablet PC Input Panel does not cause TextInput event?
I have a custom control that consumes WPF TextInput events. This works fine when using the keyboard; however, if the hand-writing recognition of the "Tablet PC Input Panel" (comes with Windows 7) is ...
6
votes
4answers
2k views
Concurrent/Non-blocking console keyboard input in Java
I'm working on a MUD in java. I read player input every tick, but I'm using Scanner which uses blocking operations. I want to have non-blocking input. I've looked at the nio package which has a ...
5
votes
4answers
75 views
Have text that clears when you click on it
I would like to know how to implement something like stack overflow when you post a question: "At least one tag such as (css html asp.net), max 5 tags.
How can I implement something like this for a ...
5
votes
2answers
238 views
Android keyboard does not open when using media queries
I have a mobile site that includes a search box at the bottom. I also use media queries to hide content in portrait mode and display it in landscape mode.
However in Android devices when I click on ...
5
votes
4answers
140 views
CSS style specific characters inside a text input
I have a script that generates text when a user press a button. This text is sent to an input box, so when I press the button some text appears in one input box.
I would like to know if there's any ...
5
votes
1answer
759 views
How can I avoid iphone safari first letter in caps
I am designing a small webpage targeted for the iPhone/iPod touch. I have a form that requires the user to enter a code. When you tap on the corresponding field, the iphone will automatically set the ...
5
votes
7answers
5k views
Default text on input
How to set blank default text on input field and clear it when element is active.
4
votes
1answer
775 views
Custom inputType / key set for Android soft keyboard
I'm looking into changing bits and pieces of Android's input methods, to enter coordinates specifically.
The keys/characters needed are 1234567890.-:
When choosing numeric signed and decimal I have ...
4
votes
2answers
204 views
program skipping a line of code
I have been working on this program for a while and I finally got rid of the compile errors. But when I tried it, the program basically skipped a line of code.
#include <iostream>
#include ...
4
votes
3answers
785 views
do touch events not work with text-input elements in iPad Safari?
In iPad Safari, I have programmed a DIV's touch-events so that when you touch inside the DIV and hold your finger there for 500ms, the DIV's background color changes.
When I try to move the code over ...
4
votes
1answer
2k views
Is it possible to change UITextInputTraits while a UIKeyboard is in view?
I want to change the UITextInputTraits of a keyboard while it is in use....
My ideal code would look something like this:
- (IBAction)nameTextDidChange:(UITextField *)sender {
if ([sender.text ...
4
votes
4answers
18k views
Capturing user input from Flex TextInput control: which event to use?
Should I use the change or textInput event to capture user input on a TextInput control? Why?
3
votes
3answers
79 views
Why does ColdFusion think that the value “7+” is a valid integer value, and how I can validate that it is not?
I have a form for users to input quantities. The form has client-side validation to ensure that the value is an integer and within a given range. The action page has server-side validation to ensure ...
3
votes
2answers
138 views
How can I make my EditText five lines high without using android:inputType=“textMultiLine”?
I want to have a EditText view that is five lines high. I want it five lines high for visual appeal reasons only (so that it does not appear cramped). The code below does not work, the EditText ...
3
votes
3answers
215 views
CSS: How make the cursor to become a pointer on the input file?
How can I make the cursor to become a pointer on an input file or an input text when you hover it?
My try but it does not work of course,
<input type="file" style="cursor: pointer;"/>
Or do ...
3
votes
1answer
177 views
SDL TextInput (using the new 1.3 structure)
Okay, I have been studying text input in SDL (how to turn the keystrokes data into letters and append them to a std::string called Text) and most of the tutorials have covered it this way:
//If a ...
3
votes
4answers
693 views
how to write content in a Specific position in a File
Suppose I have a file named abhishek.txt and that contains the following line
I am , and what is your name.
Now I want to write
Abhishek
after "I am" like I am Abhishek, ..
How to write ...
3
votes
2answers
2k views
Overwriting the class on a `Html.EditorFor`
by the default with
<%: Html.EditorFor(m => m.ConfirmationHeadline) %>
the output is:
<input type="text" value=""
name="ConfirmationHeadline" id="ConfirmationHeadline"
...
3
votes
5answers
254 views
3
votes
1answer
975 views
How can I put a Twitter-like fade-in glow around an HTML text input field?
I know a glow around input fields is standard, but Twitter manages to fade it in smoothly. I've been looking around but can't seem to find a solid way to achieve this. How is this done?
3
votes
1answer
1k views
move caret to the end of a text input field AND make the end visible
I'm going insane. I have an autosuggest box where users choose a suggestion. On the next suggestion selection the value of the text input box exceeds its size. I can move the carat to the end of the ...
3
votes
3answers
3k views
Keeping caret position in a visible position in text input - firefox misbehaves
I'm toying with the idea for my text input box of clicking on a div containing a selection of "tags" to add meta content. My text input has a width of 35, but I want it to be able to overflow.
I've ...
2
votes
1answer
56 views
How to remove a particular text in TextInput in Flash?
Design a Text Input by using components in flash and its InstanceName is listChat.In that text input i added a text by Dynamically.while am adding text it displays with null.
For Example i added ...
2
votes
1answer
35 views
Styling Open-Ended Text Inputs [closed]
What's the best / recommended practice to treat a text input that contains HTML tags? The idea is to properly display the input e.g. on a different page.
As expected, people can be very creative with ...
2
votes
1answer
871 views
Flex restrict TextInput to accept only decimal numbers?
Is there some easy way to restrict TextInput to accept decimal numbers in range -99.999999 to +99.999999 ?
it is Spark TextInput.
2
votes
1answer
223 views
How to cancel editing in Halo/Spark TextInput and TextArea components
I am using Flex 4, ActionScript 3.
In the AdvancedDataGrid component, when you are in Edit mode in a cell, you can hit the Escape key to cancel editing (i.e. return to the previous value in the ...
2
votes
4answers
103 views
Javascript: How to use same button for different text input?
Suppose I have 2 input elements with only 1 button. I want the button to do a function for one input element at a time according to which one is currently being focused but I don't know how to capture ...
2
votes
2answers
331 views
Global eventListener, when focus inside the texiInput
I'm trying to make a global eventListener. Everything works fine, the KeyboardEvent.KEY_DOWN fires all the time .. except the cases when the textInput has a focus.
Here's how I attach listener:
...
2
votes
1answer
623 views
How to change the keyboard input type on Android
I know that when using a EditText we can change the input type using the setInputType(InputType.TYPE_CLASS_TEXT); method. But, I'm not using a EditText, I'm showing the keyboard using the ...
2
votes
2answers
428 views
Keypad decimal separator on a Wpf TextBox, how to?
I have a Wpf application with some textbox for decimal input.
I would that when I press "dot" key (.) on numeric keypad of pc keyboard it send the correct decimal separator.
For example, on Italian ...
2
votes
5answers
3k views
C++ Reading in words from a text file, word by word or char by char
I've been googling around and reading through my book and trying to write out code to read through a text file and process words out of it, one by one, so i can put them in alphabetical order and keep ...
2
votes
4answers
663 views
Get all input fields inside div (without JS library)
What's the easiest way to get all input fields inside a div without using a javascript library like jQuery?
Similar to this jQuery snippet:
var inputs = $('#mydiv :input');
2
votes
3answers
1k views
Setting focus on a Popup's textInput control
I'm trying to have a popup window with an immediately editable TextInput. This means that the user should be able to type inside the TextInput once the popup is displayed.
The problem is that I can't ...
2
votes
1answer
327 views
Python input that ends without showing a newline
Is there an python function similar to raw_input but that doesn't show a newline when you press enter. For example, when you press enter in a Forth prompt it doesn't show a newline.
Edit:
If I use the ...
2
votes
4answers
687 views
making jQuery plug-in autoNumeric format fields by time page loads
I've been messing around with autoNumeric, a plug-in for jQuery that formats currency fields.
I'd like to wire the plug-in so that all currency fields are formatted by the time the user sees the ...
2
votes
1answer
681 views
Cocoa/Objective-C - Child window with text input without main window becoming inactive
I have a need to spawn a window that will hover just above my main window in a cocoa application. I want this main window to allow the user to enter some text in an input box. All is well until the ...
2
votes
3answers
2k views
How do I get input from a user using j2me canvases? is this even possible?
Hey guys thanks for reading!
I am currently trying to learn J2ME and build a connect four game (some of you might know this as 'four in a row'). I've More or less got all of the aspects of my game ...
2
votes
3answers
566 views
Text Input Field CSS Styling
I have a text input field that has some sample text in a light gray font that I'm clearing when the user clicks to type in the field. When that happens I'd like to also change the font color to black ...
2
votes
3answers
20k views
Getting started with text input and dynamic text fields with ActionScript 2.0 or 3.0
I know this is a simple question, but I haven't worked much with ActionScript...
I know how to create a text input field with Flash. I can create it on the stage and give it an instance name.
What ...
2
votes
1answer
494 views
JSF inputText and inputSecret differ in size
again just a short one:
I've done a login page in JSF which contains an inputText for the username
and a inputSecret for the password. Size is set to 20 for both.
FF manages to show it correctly, IE ...
2
votes
3answers
4k views
Delphi InputBox for password entry?
Inputbox:
answer:=Inputbox('a','b','c');
works good, but I'm looking for a masked one, like a password box where you only see little stars instead of the typed characters.
1
vote
1answer
40 views
Flex mobile application TextInput width issue
I made a simple Flex mobile application to test TextInput fields. I define my View with width=height=100% and use vertical layout. Inside I'm simply placing static TextInput components with width of ...
1
vote
1answer
41 views
To add color for textInput in Flash?
I have an issue with applying backgroundColor to a TextInput component in Flash. I have a MoveClip called LastLayer; in that Layer i designed the TextInput by using components. Now I want to add the ...
1
vote
1answer
61 views
How to give focus to a TextInput programmatically in Actionscript 2?
I am trying to write a small piece of Actionscript that gives focus to a TextInput. The reason being, I don't want my user to have to click into the text field to see the cursor and start typing, it ...
1
vote
2answers
76 views
jQuery Add http:// as prefix to text input if there is none
I have a text input that need an url as value (complete of http://) and I want that if the user don't writes it himself if gets added automatically. My code as follows,
jQuery
...
1
vote
1answer
53 views
Incrementing value (integer) in an input type field
I have input text and I want to increase the number that is inside using the key up or down.
I have:
<input type="text" value="1" name="qty" />
After digging stackoverflow I found: Is it ...