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" ...
1
vote
1answer
70 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
1answer
99 views

Making dynamically created textfield searchable in xml

I recently posted a question on this same project that was helpfully answered by walkietokyo. previous question So my new question is using that solution to make the text sprites searchable. So in ...
-1
votes
1answer
58 views

in android: retrieve data from dynamically added fields in form

I am trying to develop a user input form where i take his details and store them in the form i have fields for his name, email, address, phone number etc. a person may have multiple emails or multiple ...
-1
votes
1answer
93 views

Creating a dynamic textfield inside a grdiview

<?php echo CHtml::beginForm('','post',array('id'=>'base-si-received-item-form'));?> <?php $this->widget('zii.widgets.grid.CGridView', array( ...
0
votes
0answers
133 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); ...
1
vote
1answer
295 views

Displaying all items in an array in a dynamic textfield [Actionscript 3]

I have an array of items which I would like to be displayed within a dynamic textfield to form a high score list. The amount of items within the arraylist with vary depending on how many high scores ...
0
votes
1answer
91 views

Dynamic text unable to be changed

I made a preloading screen in flash, I have a preloader MovieClip wich contains the progressBar and a progressText MC-s both are created by me, in the preLoader class I use the code like this: ... ...
0
votes
1answer
805 views

how to dynamic fill the text field in ios app

I have a one page application with a couple of text fields. One field is a Drop-down menu, with which the user can choose the item to fill in this text field (text1). After this text field (text1) is ...
2
votes
1answer
2k views

Changing TextField style dynamically in Extjs

I'm trying to set the background-color and color of a TextField (to mask a password) on a checkbox click event. My best try: var hidePass = new Ext.form.Checkbox({ xtype: 'checkbox', ...
1
vote
3answers
635 views

Changing Img Src based on value entered in a Textfield

I need help creating a form with the following TEXTFIELD(will be used to enter 7digit model numbers) An image placeholder (will change the image placeholder's src based on a url for example it will ...
1
vote
3answers
611 views

Cant generate text fields dynamically Javascript onChange

I am having trouble with generating text fields dynamically. I have a select box in the form and what I want to do is to create text fields on the basis of selection of number in drop down list. So if ...
0
votes
1answer
1k views

Dynamically name struts2 textfield

I am trying to write a JSP that contains a struts 2 textfield tag as follows: I would like to dynamically assign a name to this textfield using the value of a variable I declare earlier in the ...
0
votes
1answer
264 views

Objective C - TextField size

i've a string that i have to place in a UITextField. But my TextField have not to be scrollable, but have to size itself based on the string length. How can i do this??
0
votes
0answers
222 views

batch edit text file with enviremental information and other variables

I was wondering if it's possible to create a batch file to change multiple entries in a text file with environmental variables or other information. I need to be able to generate multiple text ...
0
votes
1answer
422 views

How to fill a textfield in later frames from the first frame?

I have a case where I can change the contents of an actionscript class which fills the dynamic text fields in a flash movie. The class function is called from the first frame in the movie and fills ...
0
votes
1answer
2k views

Grails: How do I make a g:textfield to accept only numbers or only letters?

I have different g:textfields throughout my code, and I want to make some of the to only accept numbers or letters, but I don't want to validate for them, I want them to be immediate, like if the ...
0
votes
2answers
871 views

How to create dynamic textfield based on radio button's input

I am trying to get a form's textfield to dynamically appear based on a radio checkbox selection. For example, on my form...there is a radio button that ask "Do you want to enter your age?" with an ...
2
votes
2answers
3k views

Flash Custom Font with Dynamic Text Field

I am creating a textfield using this code: window_title = p.createTextField("border"+diepixWindow.NextBorderDepth, p.getNextHighestDepth(), wx1+TITLE_OFFSETX, wy1+TITLE_OFFSETY, ww, 64); var ...
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 ...