A textfield's is a widget which allow the user to input text information to be used by the program.

learn more… | top users | synonyms

216
votes
13answers
129k views

jQuery Set Cursor Position in Text Area

How do you set the cursor position in a text field using jQuery? I've got a text field with content, and I want the users cursor to be positioned at a certain offset when they focus on the field. ...
18
votes
1answer
7k views

Rails not editable text field

I have a form_for written in the following manner: <div class="field"> <%= location.label :city %> <%= location.text_field :city, :disabled=>true%> </div> <div ...
17
votes
11answers
26k views

Best way to restrict a text field to numbers only?

I'm using the following Javascript to restrict a text field on my website to only accept numerical input, and no other letters or characters. The problem is, it REALLY rejects all other key inputs, ...
12
votes
3answers
24k views

TextField Example in Cocos2d

Can anyone please suggest some links for using textField in cocos2d. I want to press on label, then the textfield should get selected and I need to edit on that textfield.
12
votes
1answer
14k views

Flash AS3: ReferenceError: Error #1056: Cannot create property

I am writing something in Flash/ AS3, and I came across this problem: ReferenceError: Error #1056: Cannot create property txtInput on package.name.DocumentClasss Basically I have a document class, ...
12
votes
1answer
523 views

Horizontal Scrolling and TextField Error

I have created a CustomTextField which scrolls itself towards left when i type text which are extra than the width of the TextField for which a HorizonalFieldManager is used But now the problem is ...
10
votes
2answers
4k views

Disable HTML escaping in Django's TextField

How can I turn off Django's automatic HTML escaping, when I write into model's TextField?
8
votes
5answers
19k views

HTML input field hint

I want to provide the user with a hint on what he needs to enter into my text field. However, when I set the value, it does not disappear once a user clicks on the text field. How can you make it ...
8
votes
7answers
6k views

Javascript text input fields that display instruction (placeholder) text

What's the best way to have a text input field that displays instructions of what to enter in that field in gray. When you focus on that input field, the gray instruction text disappears and your ...
7
votes
3answers
7k views

Avoiding cursor change over dynamic text fields in Flash CS3

I have a dynamic text field inside a MovieClip symbol. Whenever the mouse pointer is hovered over the symbol, the cursor changes to the I-shaped text editing cursor. This may be a very stupid ...
7
votes
4answers
7k views

django admin TinyMCE integration

This is weird: I have installed and configured django-tinymce, but it doesn't seem to work with django admin. this works fine with Safari: class ArticleAdmin(admin.ModelAdmin): ...
6
votes
3answers
3k views

Which event belongs to “type text into textfield” using jQuery

Just imagine a formular where there is a checkbox and a textfield. If someone starts typing into the textfield "bla bla bla whatever", the checkbox should tick itself. Is there a event that ...
6
votes
1answer
2k views

Rails: How “email_field” differs from “text_field”?

I understand that text_field creates an input field of type text, while email_field creates an input field of type email. But, what is the difference between these two input types ? Say I have a ...
6
votes
5answers
361 views

Alter text field focus order with jQuery

I was wondering, if I have text fields displayed so, could I alter the order in which the focus using javascript (preferably jQuery). See this example here. What I mean that when you tab around ...
6
votes
6answers
3k views

Arabic text in as3

How can I display arabic text from right to left with as3?
6
votes
2answers
7k views

Change TextField selection color in AS3

How can I change the select ("highlight") color of an TextField in actionscript 3? I've got an input textfield with white text on a black backdrop and as a result, selections are invisible, which is ...
5
votes
2answers
5k views

javascript to find leap year

How can I get the code below to work when I have a month of february? Currently it is getting to the day and then stopping before getting to the if to determine whether it is a leap year. if (month ...
5
votes
1answer
546 views

Problem with instance names inside Button

I've created a button in Flash, and inside that I have a TextField and a MovieClip, both with instance names set. They cover all 4 frames of the button, with no keyframes. I found I couldn't access ...
5
votes
1answer
137 views

How to make textfield have 2 document filters

I have a code here that i got form MDP's weblog. the sizefilter and the number filter. how do i make a textfield set its filter for two document filters. Here isthe numberfilter import ...
5
votes
1answer
1k views

AS3 TextField setting top margin of text because some chars are cutted out

I am trying to figure out why some letters (like the norwegian Å (Å)) are cutted out in the middle of the top "o": My code is this: var titleFormat:TextFormat = new TextFormat(); ...
4
votes
6answers
8k views

Actionscript: How do I rotate a text field?

How do you rotate a text field in actionscript 3.0? As soon as I change the rotation property of the text field, it does not display. for example: var txtFld:TextField = new TextField(); txtFld.x = ...
4
votes
4answers
10k views

Numbers Keyboard in Xcode

Does any one know how to show the numbers keyboard in the iphone rather than the default one? And is there a way to filter the textfield for numbers only? I need to do that from the code not from ...
4
votes
6answers
3k views

How do you prevent arrow up/down default behaviour in a TextField?

I am making a input field for keywords, and while the users writing I'm displaying suggestions for keyword on a list underneath the caret position. The input field is single line, so I am using the ...
4
votes
4answers
128 views

How to change the data in ALL the textfields in a page to uppercase on click of a button

I have a page with some 13 textfields. I want to change the case of data in all the textfields to uppercase on click of a button. I can either user Jquery/javascript. I definitely don't want to use ...
4
votes
3answers
3k views

how to get selected text from uitextfield in iphone?

I am working on Text to speech application in iPhone, in which have a text field that takes input, i want user to select some portion of text from text field and my application will convert that ...
4
votes
6answers
7k views

How do you programmatically move the caret of a Flex TextArea to the end?

I'm trying to move the caret in a Flex TextArea to the end after appending some text from my code. I've looked through the reference documentation for TextArea and its underlying TextField but it ...
4
votes
3answers
4k views

Custom Keyboard: inputView: how to change the Keyboard size?

I implemented the textfield with a custom keyboard with the "setInputView" function. But i have a problem: my keyboard frame is not a standard iphone keybord frame. The question is: How can i change ...
4
votes
1answer
3k views

Android - Add textview to layout when button is pressed

So right now I have a text field with a button (add+) below it. I would like to make it so every time text is entered into the Text Field, and the Add button is pressed, a new text view is added to a ...
4
votes
2answers
423 views

becomeFirstResponder not firing

I have a view controller whose viewDidLoad method invokes becomeFirstResponder on a textfield (email) contained within its associated view: -(void) viewDidLoad { [email becomeFirstResponder]; } ...
4
votes
2answers
10k views

ITextSharp - text field in PdfPCell

I'm using iTextSharp to create a PDF, how can I add a textField into PdfPCell?
4
votes
6answers
3k views

iPhone keyboard with 0-9 and decimal point? [duplicate]

I'm writing an iPhone app that has a textField for the user to enter a "dollar amount" like 12.34 None of the SDK keyboards seem to have a decimal point. (OR do they?) So I decided to just let the ...
4
votes
2answers
2k views

Changing Border Color of AWT TextField

In AWT application I need to set border color of TextField. In JTextField, I know that we do can do the following JTextField tf = new JTextField(); ...
4
votes
4answers
3k views

Auto-complete text field

How do I make an autocomplete text field like the one here at Stack Overflow for the Tags fields? I want to use it for my Rails app.
4
votes
2answers
1k views

Setting hint text in a text field in Ruby on Rails

Can some one suggest the best way for setting hint text(not default text) for a text field in Ruby on Rails. Currently I am using this: <%= text_field_with_auto_complete "customer", ...
4
votes
1answer
356 views

Assertion failure in -[UITextFieldLabel setTextColor:]

i got following assertion failure : Assertion failure in -[UITextFieldLabel setTextColor:], /SourceCache/UIKit_Sim/UIKit-1448.89/UILabel.m:314 at this line [self.window makeKeyAndVisible]; in ...
4
votes
1answer
207 views

Filling a textform - String too small?

I currently have to do a job where I have to copy the code of a website into a textfield. I'm using watir to do the browser handling. As far as I know, I can only fill the field using the set ...
4
votes
3answers
78 views

How to let the user choose between typing price inclusive VAT or exclusive VAT in TextField?

I am implementing an back-office application where the user type in prices for products. Sometimes it is preferred to type the price inclusive value-added-tax, VAT and sometimes exclusive VAT. How do ...
4
votes
1answer
3k views

How to make an input dialogbox which has more than one textfield(ie. can take many inputs)

Hey there, I have implemented an input DialogBox, however this has one textfield. I need an input DialogBox which has many textfields to take input from and store each String in an array. What I have ...
3
votes
3answers
4k views

html5.0 canvas textfield

i wanna draw a login interface,so i have to draw the textfield to input and button to submit! if i achieve it by using input and button tag,it will be easy!but i was required to draw them in the ...
3
votes
3answers
3k views

TextField - show hint before user starts typing text

I am developing an Blackberry application. I want to show a hint text in TextField before user starts typing.when user starts typing it should disappear and when there are 0 characters in TextField it ...
3
votes
2answers
2k views

Java - placeholder on textfield

I'm trying to create a GUI with Swing. My problem is, I have a textfield, but I want it to have a "placeholder" (like in html). I read here and there that it can be done by overriding the paint() of ...
3
votes
3answers
992 views

java - Cant change the value of a JTextfield from inside of DocumentListener methods

I get an "Attempt to mutate in notification" exception. 1. How can I change it ? 2. How can I get the value that was inside the TextField before the listener was triggered? EDIT: It is something ...
3
votes
2answers
287 views

Automatically change focus among Editfields in Blackberry

I have five EditField objects in my BlackBerry app, each one will accept only one numeric character. I want to change the focus from the first EditField to the second EditField when a character is ...
3
votes
1answer
3k views

How to type some text in hidden field in WebDriver

I am using WebDriver with Java for test automation. I have the following HTML code for input field which is hidden: <input type="hidden" value="" name="body" id=":6b"> How to type something ...
3
votes
3answers
4k views

JFormattedTextField with MaskFormatter

I have a JFormattedTextField that I use to restrict entries of a date and time. I want to use a MaskFormatter though to show the placeholder chars. Is there a way to use a MaskFormatter on top of the ...
3
votes
3answers
5k views

AS3 Rounded Text Field

Does anyone know how to create a dynamic textfield with a visible border and rounded corners in AS3? I think I might have to create a rounded movieclip, resize and place it behind the text. I tried ...
3
votes
4answers
12k views

MS-access wrong date format when converting field from text to date/time

I have an access database given to me where all the dates are stored in a text field in the format mm/dd (eg: 3/13/2009 12:20:36 AM) I want to convert the field to a date/time but access formats it ...
3
votes
3answers
124 views

checkboxes and textfields jQuery

I have 5 checkboxes in class check(named cb1, cb2, cb3, ...) and 5 corresponding textfields in class text(named tf1, tf2, tf3, ...). When one or more checkboxes are checked I want to count all checked ...
3
votes
2answers
295 views

How to listen to both user edits and changes made in code for textfield in ExtJs4?

I know that I can add a listener to the change event, but it will fire only when user changes the value. Is there a way to setup a similar listener for programmatic change as well?
3
votes
3answers
736 views

Increment / decrement button In ExtJS

Is there a button in ExtJS with increment/decrement feature (something like that)? I have some numberfields with values that are usually incremented/decremented when edited and this button would be ...

1 2 3 4 5 21