For questions related to a single-line, text input. EG: ``, or a UITextField, or TextInput (Flash), or `` (RSS). ... Use textarea for multiline or WYSIWYG text controls.

learn more… | top users | synonyms

2
votes
1answer
165 views

What options are available for handling text input on Android using Adobe AIR?

What options are available for handling text input on Android using Adobe AIR? What are the advantages and drawbacks to each option?
48
votes
4answers
146k views

Get value in input text box

Which are the ways to get and render an input value using jQuery? Here is one: <script type="text/javascript" src="http://code.jquery.com/jquery-1.4.3.min.js" ></script> <script ...
15
votes
5answers
13k views

How to disable Ctrl+V (Paste) with jQuery

How can I disable Ctrl+V (Paste) option using jQuery in one of my input text fields....
25
votes
2answers
14k 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.
6
votes
4answers
3k 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 ...
3
votes
1answer
2k views

Help with the WPF TextCompositionManager events

The docs on this are pretty shoddy. There are a number of events you can hook into to monitor and take control of text input that are accessed via the TextCompositionManager. If you're wanting to do ...
1
vote
3answers
6k views

Span inside text input field?

Is it somehow possible to place a span as the value of a text input field? I am making a mailing system for a website and want a nice looking receivers input field, where added receivers are ...
0
votes
2answers
470 views

js disabling backspace functionality in firefox

I have following javascript to prevent user from entering invalid characters into a text field. It's working well in chrome but not in firefox. It's preventing the backspace key to be entered in the ...
0
votes
7answers
1k views

unobtrusive “default” text in input WITHOUT jQuery

i'm trying to write unobtrusive default/placeholder text in input (actually, relatively placed label over input, which hides on onFocus, and stays hidden if input isn't empty on onBlur), but I don't ...
4
votes
4answers
4k 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 ...
2
votes
4answers
1k views

Flex Mobile textInput in scroller text lag

I have been seeing a weird lag in the text that is input into a textInput container in my flex mobile app. The issue occurs when I type in some text into a textInput then scroll in any direction. ...
2
votes
2answers
7k views

WPF: Textbox not firing onTextInput event

So basically, I have a bunch of TextBoxes that the user gets to fill out. I've got a button that I want to keep disabled until all the TextBoxes have had text entered in them. Here is a sample XAML ...
1
vote
1answer
963 views

How can I prevent input controls from stealing the space character from the TextCompositionManager?

Related (but not a dupe!) to this question: http://stackoverflow.com/questions/1053210/help-with-the-wpf-textcompositionmanager-events When using the TextCompositionManager I'm having an issue ...
0
votes
2answers
343 views

How to include and pass a Javascript value to the next page?

Hello everyone I'm here today because Ive been trying really hard to understand and after many many hours of trying to learn and getting nowhere Ive decided to just create this post. Thanks in advance ...
16
votes
8answers
37k views

padding a text input in IE… possible?

I have a text input with a search buton absolute positioned over it... to make space for the button I used some padding to keep the text from going under the button, which is fine, it works in ...
8
votes
7answers
7k 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; ...
23
votes
6answers
21k views

Selecting all text in HTML text input when clicked

I have the following code to display a textbox in a HTML webpage. <input type="text" id="userid" name="userid" value="Please enter the user ID" /> When the page display, the text contains the ...
13
votes
7answers
20k views

Default text on input

How to set blank default text on input field and clear it when element is active.
1
vote
2answers
3k views

Need custom input fields for wordpress woocommerce plugin

I am using WordPress woocommerce plugin to make a eCommerce site. Everything is good about woocommerce plugin. But when I saw the register section where a user will make register all of his details, ...
10
votes
1answer
2k 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
4answers
122 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 ...
3
votes
3answers
4k 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
945 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 ...
3
votes
3answers
4k 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 ...
1
vote
1answer
81 views

Filter search for <ul>

I have a list of users as well: <ul> <li class="thumb selectable arrow light" style="margin-bottom:-5px;" data-image="http://cdn.tapquo.com/lungo/icon-144.png"> <strong ...
1
vote
4answers
2k views

Jquery .keypress on a dynamically added input

I am currently adding an input via a .click event and then wanting to listen to any keypress that occurs on this input. However, the appended isn't firing any events after it is inserted (i.e. blur, ...
0
votes
3answers
438 views

processing strings of text for neural network input

I understand that ANN input must be normalized, standardized, etc. Leaving the peculiarities and models of various ANN's aside, how can I preprocess UTF-8 encoded text within the range of {0,1} or ...
0
votes
1answer
307 views

Flex Mobile 4.6 Textinput Databinding

the new TextInput component which uses stagetext on 4.6 has this issue where if you bind a variable on it e.g view1... and i push a new view e.g view2, and pop it, hence reloading view1. on initial ...
4
votes
2answers
573 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 ...
3
votes
2answers
736 views

Add search icon inside spark TextInput in Flex

I want to add search icon inside the spark TextInput control. Is there a way by which I can extend the TextInput control and add a child to it. Thanks
2
votes
1answer
57 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
3k 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
3answers
6k 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
152 views

My Android AIR app shows white screen when TextInput loses focus

That's pretty much sums up the question. I have an AIR Mobile Flex App project in FlashDevelop that is using views to show content. Everything works fine, I can add a TextInput or TextArea to the ...
1
vote
2answers
1k views

Flex 4.6 AIR 3.2 TextInput artifacts

I'm testing simple TextInput functionality in flex 4.6 + air 3.2 mobile application and observing strange artifacts when soft keyboard resizes the view. Here is appearance: before soft keyboard is ...
1
vote
3answers
3k views

jQuery move cursor to end of text input

Currently I have an input box which has the value "Current Website" When they click it I run this function: function clearMeHttp(formfield) { if (formfield.defaultValue == formfield.value) { ...
1
vote
2answers
1k views

Mimic apple.com globalsearch input field with HTML and CSS

OK, so if you check out http://www.marioplanet.com you can see that I am trying to mimic the design of apple.com for my menu bar, including my global search bar. Now, I'm trying to mimic Apple's ...
1
vote
1answer
744 views

vertical alignment for FORM INPUT FIELDS in safari and chrome

i have a select box with height: 60px. when i user clicks an option, i would want that option text to appear on the lower bottom of the select box...however safari and chrome automatically vertically ...
1
vote
1answer
655 views

PreviewTextInput is not fired when the focus is on checkbox / Handling the PreviewTextInput in Main window and not allowing child control steal the characters

I have the following code. The window has a textbox and a checkbox. If I have focus on the anything other than checkbox and type something like 123-456 then for each character PreviewKeyDown and ...
0
votes
1answer
77 views

Input text without previously entered value [duplicate]

Possible Duplicate: How do you disable browser Autocomplete on web form field / input tag? I entered a value in input text for example: email@email.com, after when I entering another value ...
0
votes
2answers
208 views

How can I prevent letters inside a text element?

I like to have an input with maximum length 3. These input value should be only numbers no letters. By referring to this post: why is <input type="number" maxlength="3"> ...
0
votes
1answer
204 views

Input Method (IMKit) setup trouble

I'm trying to create a new input method using IMKit. The documentation is very lacking, but I believe I'm setting the project up correctly and I place the input method into ~/Library/Input Methods ...
0
votes
1answer
2k views

Send message from Activity to Service - Android

I am writing a keyboard replacement app for Android, and I needed the keyboard customized enough that I need to run it in an Activity, instead of keeping it in the InputMethodService class. Here is ...
0
votes
2answers
464 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 ...
0
votes
3answers
533 views

collect value only from the text input that have been changed

I have a html page that after ajax call show a lot of data rows, in every row i have input text with different value, the user can edit this text input and then press a button to do some calculate ...
0
votes
3answers
505 views

when text changed inputbox automatically updates next 6 text boxes

I have 7 textboxes. If Top 1 textbox(Volume All Years) text changed, text need to be updated in next 6 inputboxes(Latest 2009 Volume to Latest 2014 Volume). I need javascript or Jquery for this. I ...
0
votes
1answer
1k views

Flex: How to change caret (text cursor) in editable text area / text input

I need to put together an editable text area that has a custom caret (cursor) which is different from the default blinking vertical line. Is the caret a "skinnable" property of text input? Please ...