A textfield's is a widget which allow the user to input text information to be used by the program.
3
votes
0answers
78 views
Recommended way to restrict input in JavaFX textfield
It may seem the question is the duplicate of this. But my question is i have devoloped a integer textfield in JavaFX by two ways. Thye code has given below
public class FXNDigitsField extends ...
2
votes
0answers
17 views
texfield search Titanium not working
Coding a app with titanium sdk 3.0.0 and Im in the last phase before release and i cant get my textfield search to work. This is my code:
enter code here var customSearchBar = Ti.UI.createView({
...
2
votes
0answers
153 views
libGDX: Textfield with BitmapFont(true) renders the text outside the borders
I'm experimenting with TextField and having problems with it when flipping the font. My orthographic camera is set to yDown = true. With that settings, the text is flipped so I came up with a solution ...
2
votes
0answers
101 views
xcode xib file only creates null references
today I came across a strange problem.
I started a really simple project where I just had one View with an UITextField on it. During execution of program I wanted to set the text of that TextField but ...
2
votes
0answers
1k views
Android Webview Autocomplete Text Color
I have a WebView integrated into my application. The problem I am facing is with the autocomplete that pops up when the WebView recognizes that there was a value previously entered into the text ...
1
vote
0answers
62 views
libgdx textfield language on Android
How to get input into libgdx TextField in native language on Android?
I mean an ability to input login or password for example. Yes, i could call smth like Gdx.input.getTextInput or native Android ...
1
vote
0answers
25 views
Hard Wrap for TextField in Django
I am using TextField in django and I have a form for the user to enter a passage. I want this passage to be saved with hard wrap in such a way that it appears the exact same way in terms of spacing ...
1
vote
0answers
67 views
Date format in a textfield
I have a textfield:
xtype: "fieldset",
items:[
{
xtype: "textfield",
name: "dateScanned",
label: "Datum",
disabled: true,
tpl: "{dateScanned:date('d/m/Y H:i')}" // <--- ...
1
vote
0answers
28 views
XCode 4 storyboard
I have created a tableview in storyboard
i want to add a favourite button on the right hand top corner in the 'Title bar'
when the button is pressed it will link to the tableview that is created ...
1
vote
0answers
136 views
Multiline textfield in C# changes layout?
I am using the ASP.net framework. I am building a web form using the design view of the .aspx file. I have made a very simple form, the below is the code in the .aspx file.
<asp:TextBox ...
1
vote
0answers
161 views
android: set text field position, dynamic position, in java
I'm new at android programming.
How can I set the position of a textfield from a .java file activity? (I dont want to change it from the .xml file)
I already tried :
TextView tv = new ...
1
vote
0answers
39 views
Safari bug at textField
On my chat website there is a simple <input type='text' ..., but sometimes only Safari (Mac) shows weird "shadows" or whatever (always different - sometimes vertical, sometimes horizontally). Is it ...
1
vote
0answers
184 views
Text from text field in mysql database getting cut off on special chars and minus signs when in phpmyadmin or using php
Text from text field in mysql database getting cut off on special chars and minus signs when in phpmyadmin or using php.
Hi again there are a few questions relating to this sort of thing however no ...
1
vote
0answers
149 views
Accessing Spring MessageSource from Struts tags
My first question here, but hope it counts. I'm rather new to Struts and Spring so bare with me please.
I'm using Spring 3 for IOC and Struts 2 for MVC (so I'm using Struts Actions for all the work, ...
1
vote
0answers
171 views
UIKeyboardAppearanceAlert for textfield of UIWebView
How to set the keyboard appearance to UIKeyboardAppearanceAlert that appears whenever I tap on text field of UIWebView? I know how to set it for a textfield placed in normal UIView
Thanks and ...
1
vote
0answers
277 views
New BlackBerry text selection mode
In recent versions of OS6, text selection has changed. I am using an ActiveRichTextField and in BlackBerry OS pre-6.0 as well as older versions of 6.0, such as 6.0.0.246, the focus would move though ...
0
votes
0answers
17 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
0answers
21 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 ...
0
votes
0answers
18 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
11 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
21 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 ...
0
votes
0answers
22 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
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 ...
0
votes
0answers
13 views
I didn't find any solution for textfield with clear notification
help me with it I'm so tired of searching i didn't find solution
i want to (clear notification when if else statement in my text field its right) (if its else wrong no clear for notification) ..
...
0
votes
0answers
16 views
When adding doesn't add up in Javascript/Titanium
SDK 3.0.2, Mac OSX 10.8, targets iOS and Android. I have two textfields that I am attempting to add user-entered values (numbers) to use the sum in a payment module.
After several trials, that I am ...
0
votes
0answers
46 views
Textfield in Slick2D with BasicGameState does not answer
I'm currently developing a simple multiplayer game with Slick2D in Java. It's going to be a little more complex with the menu structure because I need several textfields to get the information which ...
0
votes
0answers
52 views
A popover with a user input textfield that updates label in main view
I am currently trying to create a settings popover view that shows a list of options the user can choose from, which then updates on the main view.
The first part of the popover will have a name ...
0
votes
0answers
77 views
PickerView in Objective-C
After I enter the following link, the device just display the black screen. Could anyone can please answer what is the problem? Actually, I am wondering the problem is occurring in this part:
...
0
votes
0answers
28 views
how can i display picker value in a loop?
i searched stackoverflow but i didn't find the answer so i hop that some one can help me here
i got a picker and i want to display the value for it in my textfield but the problem its
only working ...
0
votes
0answers
15 views
TextField getting content cleared out on backspace
I have set-up in a storyboard a view that contents two textfields: one with secure option turn on and an other without.
I have set-up the content of those textfields in the viewDidLoad method of the ...
0
votes
0answers
47 views
Control onfocus for more elements in JavaScript
I've done this little script... jsFiddle script
<html><head>
<script type="text/javascript">
function typing(bool){
if(bool) document.getElementById('demo').innerHTML="ready to ...
0
votes
0answers
36 views
Android. Scrollable tabs. Add plain text field to tab 1 of 3
I have blank activity with scrollable tabs and I want to add plain text field to tab 1 of 3.
Can you explain how to do it, as activity_main.xml graphical layout is not allowed to add something via ...
0
votes
0answers
103 views
Make a text field appear/visible on selection of a radio button option in ruby on rails application?
I am currently working on a web application in ruby on rails. I have a sign up form in which i have fields like name, email, password and designation.
Designation needs to be a radio button with 2 ...
0
votes
0answers
234 views
how to display selection form drop down menu in a new html page
I created a drop down menu with dates to select that then opens into a new page. I want the selected date to be displayed on top of that new page. I am not sure which script to use for that. Here is ...
0
votes
0answers
33 views
How to implement input box like receiver field in the Mail on Mac OS?
I'm working on a instant message app for Mac. And I want to implement a contact search bar similar to the receiver field in the Mail app.
When a user inputs some keyword, there lists candidates to ...
0
votes
0answers
24 views
Use javascript to look at the entry in a Date field, then do [this]
I have a To-Do list that I created using Adobe Acrobat Pro 9. Then I spruced it up using Adobe LiveCycle Designer ES version 8.2.1.
My list is somewhat stream-of-conciousness based and not sorted ...
0
votes
0answers
37 views
How can I customize textfield cursor (caret) in a website?
How can I customize textfield cursor (caret) in a website through the use of flash or javascript or anything else that would do the trick?
Thanks in advance
0
votes
0answers
50 views
Auto update label in iOS
In my app i have a text field there i typing a numbers. Also i have a timer (clock)
I want to my numbers from text field divide to my timer(seconds) and show in other label.
For example in ...
0
votes
0answers
39 views
adding/removing items manually from 2 lever interdependent lists
I found similar topics and some are similar but not exactly to what I want to do.
From a 2 level interdependent select list, I want the user to be able to add/modify/remove items.
Something similar ...
0
votes
0answers
13 views
How to insert UITableviewcells in Scrollview?
I'm trying to o a chat view with Messages as customized tableviewcells and at the bottom the textfield and a sendbutton. Now I want to organize them in a ScrollView so that I can scroll the textfield ...
0
votes
0answers
98 views
tableView with TextField
I am trying to create table view with textField in my application ..the table view working fine when load minimum data ..but the text field not displaying when load large sets of data.. can any one ...
0
votes
0answers
132 views
how to create dynamic components with ajax listners in jsf
Hai any one help me plz... i want to create dynamic panel grid and wants to add components like combo box ,text field,radio button etc.. to it , here my code is..
panelGrid.setColumns(11);
...
0
votes
0answers
234 views
how to disable copy/paste in the javascript prompt function textfield
In my web application (c#.net)when I submit the form I show a popup using javascript prompt() function. Inside prompt() function there is a text field. I will enter a phone number there, but I want ...
0
votes
0answers
28 views
fliphorizontal issue blocks textfield receiving ability
did you ever notice this issue?
i have this code here to go back to main page:
-(IBAction)goBackToReport:(id)sender
{
UIStoryboard* CalculationStoryboard = [UIStoryboard ...
0
votes
0answers
71 views
I think I need to pass text field to another view controller xcode ios
Sorry, super beginner here not really sure what I am talking about.
I have upload.m upload.h viewcontroller.m viewcontroller.h viewcontroller.xib. I have a text field in viewcontroller.xib. I need ...
0
votes
0answers
55 views
Minimize status box not working properly
StatusBox listens for a double-click event listener and minimizes it to 20x20. Double click once to minimize it and double click again to restore it's original dimensions.
But when i double click ...
0
votes
0answers
31 views
Dynamic interact with image inserted in TLF Field like resizing & repositioning with text displacement
How can i interact with image inserted inside TLF Textfield in actionscript 3,
interaction includes resizing & repositioning with dynamic wordWrap
0
votes
0answers
196 views
Ext-JS 4 issue with 'blur' event on Textfield widget
I am trying to write an extension of Ext.form.field.Text such that I can detect when the widget receives focus (and then highlight the background of the text widget), and when the widget loses focus ...
0
votes
0answers
45 views
Text Field - CENTER and with numeric keypad in BB OS and later
I am using it in OS 6 and OS 7.1.
When I am using EditField, I was able to get numeric keypad(using TextFilter) but was unable to set the text in CENTER horizontally.
And When using RichTextField, I ...
0
votes
0answers
208 views
textfield onblur event
I have this text field
<?php if($row_questionset['Constructor']=="TextField"){?>
<?php while ($row_Answer=mysql_fetch_array($AnswersValue)){ ?>
<fieldset class="field" > ...






