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

0
votes
0answers
14 views

jframe delete default textfield

I have made a jframe login window.the username textfield has some default text on it. The cursor appears by default on the username text field. I would like this default text to be deleted when the ...
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 ...
2
votes
3answers
2k views

How to put X inside textfield to clear text in extjs

I want to implement an X button inside a textfield (x on right side of textfield) to clear entered texts. I have seen many extjs application that has this feature. How do I go about doing that? Any ...
1
vote
6answers
129 views

Keyboard is not resigning

Sorry for asking such a stupid question here. Actually i have a list of textfield in which i am moving to next textfield by clicking on next button. Its working fine but in that textfields one is for ...
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 ...
0
votes
2answers
27 views

How do I make text field to be hidden?

I'd like to create a text field with iTextSharp that is not visible. Here's code I'm using to create a textfield: TextField field = new iTextSharp.text.pdf.TextField(writer, new ...
0
votes
1answer
391 views

Struts 2 textfield label doesn't show in table

The following jsp file fragment using struts2 tags doesn't show the textfield label. How can I fix this? Is it possible to have the label displayed by using only struts2 tags? <s:form ...
0
votes
1answer
29 views

Ruby on Rails: text filed

I have a code where a user can select a specific file to be deleted or analyzed. <% if @files%> <%= form_tag what_to_do_files_path, method: :get do %> <%= submit_tag ...
0
votes
1answer
23 views

Why doesn't the style change according to the div size?

I have set some styles on a content-editable div the div is resizable but the style doesn't get change according to the size when the size is changed. HTML: <div contenteditable="true" ...
0
votes
4answers
33 views

How to retrieve textfield value in real time?

I am trying to find a way to update text in real time based on what is typed into a textfeild in a HTML form. I am aware of javascript's onChange event, however this only updates once a user clicks ...
0
votes
1answer
26 views

starling big textField causes texture too big (max 2048x2048) error

Sorry for the noobie question but why does a textfield with the size of 1024x1024 cause this error when running on an ipad simulatation? It seems like the ipad only allows textfields to the size of ...
0
votes
0answers
20 views

Tapestry generates input tags in pair

I want to generate HTML5 valid document, but I have a problem with forms in my Tapestry app. I am using tapestry textfields like below: <t:textfield t:id="specId" value="val" /> Tapestry ...
0
votes
1answer
12 views

Flash CS6 - Adding a Textfield onto my stage

I am trying to get a textfield onto my stage and I have worked out the following code. It seems to have no errors, but it is not appearing in the frame I put the code. I am very new to this, so I am ...
0
votes
1answer
22 views

Accessing input fields not working

i have 8 text fields and two textareas in my form.i am trying to access all of them and check whether they are empty or not.But somehow the javascript i wrote is not working.here is the code: ...
0
votes
1answer
53 views

(Java 1.7) combobox, textfield stops accepting text

The combobox in my application suddenly stop accepting text. The cursor blinks in it, but you cannot enter anything. I can restart the program and enter text for some time again. Suddenly it won't ...
0
votes
2answers
43 views

UITextField font style not changing

I have the following problem - I want to change the UITextField font to a custom one. I am using this line of code: textField.font = [UIFont fontWithName:@"fontname.ttf" size:20]; I want to use ...
0
votes
4answers
47 views

validating a string with RegEx

I am trying to validate a RegEx string in Java but i cant get it to work properly. I am attempting to make sure the the following string "AB10XY" is always contained with the textField when performing ...
1
vote
2answers
1k views

Disable text-field blue highlight in Chrome Extension?

I'm working on a Chrome extension that let's you edit a small text field, and I'm finding the blue highlight around the text field when clicked really annoying. Is there a way (preferably using CSS) ...
-4
votes
0answers
49 views

Cant get php to echo data? [closed]

Im trying to get data from the database and echo it. Im trying to echo it in the text input fields and ive tried to echo it just as text and its not working its worked in the past but cant find where ...
0
votes
2answers
43 views

Convert textField to String and String to textField

I have a function that deletes an entry in a list when it is clicked. entriesView.setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() { public boolean ...
0
votes
1answer
28 views

Proper way to hook up a NSTextField

I am trying to create a simple Mac OS X application which displays text output, which is logging for my program. Here is what I did: 1) Created a Mac OS X UI project 2) Added a "Text Field" ...
0
votes
2answers
42 views

inserting nothing in a .setText() method After loading textfile with FileReader

i'm finishing a java project for school but i'm stuck at a certain point. The assignment is to make a task-planner which should be able t save tasks u add/edit or delete and save that information on ...
-3
votes
2answers
43 views

Resetting textfield by clicking an image

I have an image that if clicked, the other div will opacity to 0 by using jquery. i want also that if the image is clicked, i will reset the textfield. here is my code. <div id=loginExit> ...
0
votes
1answer
34 views

Disable object, during busy cursor showing

I've a complex text field which I can embed types of font within it. When I try to choose a specific font through the Dropdownlist, I'll show the busy cursor till font embeds inside the text field ...
1
vote
5answers
8k views

Link in input text field

HI All, I know this is bit strange question, but please suggest. I want to create a link on website url content in input type"text" field not any other html tag,Is it possible and if yes how. ...
0
votes
2answers
31 views

output for a texteild is zero rather then an actual result

This is a strange output, I seem to trigger the alert view each time, and the value for num1 would be 0.50 which is fine. When I click calculate the alert field is triggered, and what's more num1 is ...
0
votes
0answers
24 views

UITableView keyboard resizing after insertSections not working

I've been working with a table view that allows the user to insert new data when the last cell, "ADD NEW ITEM" cell, is tapped. Each cell has some text fields inside and when one of these becomes the ...
1
vote
3answers
60 views

Java calculator add numbers to textfield

I am making a calculator to test my skills in java. How can make the numbers to show up in the jTextfield until i pressed one button to calculate the numbers; i want every numbers to show up in the ...
0
votes
0answers
24 views

Dynamic Textfield In JSF 2.0

hey I am using the following code to create the number of text fields as the user wants <h:form> <p>Number Of News <h:inputText value="#{news.noOfFields}" /></p> ...
0
votes
0answers
25 views

How to keep textfield data when navigating away and back to UIviewcontroller

In my applications one of the viewcontrollers the user navigates to, is a kind of form with textfields to fill in etc. When I start inputting some data, but then navigate away from that viewcontroller ...
2
votes
1answer
44 views

Does the Flash Text Engine display faster than typical TextFields?

In this SO post they have recommended using the Flash Text Engine (FTE) text objects like TextLine and TextBlock for read-only text. They said its faster than using the typical TextField class. ...
-1
votes
1answer
26 views

textField Input String convert into UINT32

need a little bit help. How I could save a Number from a textfield into a NSInteger variable? I got this propertys: @property(weak, nonatomic) IBOutlet UITextField *textFieldPort; @property ...
-2
votes
0answers
48 views

Drupal 7: autocomplete return nid and name, change behaviour [closed]

After a long unsuccesful search (sure not long enough), I'm posting my first question. It's about textfield autocomplete in Drupal 7. I have next code: function my_module_menu(){ ...
0
votes
2answers
117 views

Reading value from text field of form_for in rails 3, params[:x] not working

I have sign up form in Rails 3.2.9 . It contains a text field for login name called 'login' in a form-for ,I want to use the value in that field to check in database for duplicates for check login ...
1
vote
1answer
45 views

How to create Horizontal scroll view with the TextField in Blackberry

I am new to the Blackberry Field, I want to create a customized Horizontal scroll view which should exactly looks like in the below image. Any Help will be Apprreciated I am using Blackberry ...
0
votes
1answer
21 views

One text input and a submit button in scala

I'm looking for a solution to accomplish the same thing as in this similar question: HTML forms with java Play Framework 2 But in Scala. Is there a way to do this? I just have one text field and a ...
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. ...
0
votes
4answers
33 views

Only allow certain characters to be entered in html textinput

I just need to allow a user to enter the following characters in the textinput: a-zA-Z0-9!@#$%^*_| <form action="http://www.cknuckles.com/cgi/echo.cgi" method="get" name="logOn"> User ...
0
votes
1answer
26 views

Controlling carat vertically with as3

Earlier I was struggling with moving the Carat horizontally now I need to move it up & down the text field. This is for a virtual keyboard so all arrow controls are done with coded buttons. ...
0
votes
0answers
15 views

MS Access get int from textfield

I have a form and I need to get integer value from textfield. Dim year As Integer year = Val(TextField.Value) I've tried to use that, but Val returns double, so I need either function which ...
0
votes
0answers
22 views

HTTP POST to form truncating preceding 0's in text field

We're trying to post a phone number to a field that automatically parses the numbers between area code, prefix and number. If the number starts with a 0 then the fields are truncating it. These are ...
1
vote
1answer
68 views

Dynamically show required textfield depending on dropdownlist value

Good day. My problem is I have a dropDownlist with three options: A, B, C. What I need to do is to show a textfield depending on what the user chose. Example: user chose A => it will show textfield ...
0
votes
2answers
55 views

how to localize label strings in ios for a beginner

Hi im very much stuck on the process of localisation on ios . heres what i do understand , how to go to the project explorer and set base localizations for diferent countries, how to make a string ...
0
votes
1answer
34 views

Use One TextField to Input multiple data in Java

Im trying to make a program to calculate my average. But i only want to use one TextField for input. Any suggestions? I tried to make it so when the button changes, it assigns the number to the ...
1
vote
3answers
94 views

Set itextsharp textfield to be readonly

I've been trying to set a TextField to be readonly but with no success. I've tried this: field.SetFieldProperty(key, "setfflags", PdfFormField.FF_READ_ONLY, Nothing) But it will give this error: ...
0
votes
1answer
23 views

How to change one DIV field without affecting the others?

Small problem, I have a form in my Rails app with many fields, but all under the same field name as its a form right? Code: <div class="field"> <%= f.label :to %> <%= ...
0
votes
1answer
29 views

Trying to create a simple applet but it won't run through the whole program

I'm creating an applet and all that happens is it opens displays "How many genres are there?" and then a textField appears. i enter a number and hit enter but nothing ever happens! (i dont get any ...
1
vote
2answers
234 views

Disable text field for tab key press event in extjs

How to disable a text field only while pressing tab key from keyboard in extjs?
0
votes
1answer
393 views

Java Synth: can't get a white background in textfield

I can't get a white background for my JTextField, what am I doing wrong ? (I know that the image is not painted in the center for the text to be shown, but I'va set background to white; has no effect) ...
-2
votes
1answer
34 views

Manipulate components by their name? [duplicate]

I have, for example, 2 text fields (txt1 and txt2) and two buttons (btn1 and btn2). I want to build a single method that will set "hello" in txt1 if btn1 is pressed, or "hello" in txt2 if btn2 is ...

1 2 3 4 5 21