1
vote
4answers
55 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 ...
2
votes
1answer
38 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
2answers
34 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 ...
0
votes
0answers
24 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
1answer
935 views

extjs form panel set default value textfield

This seems like a trivial issue, but... I have a list of addresses in a panel to which I wish to add geolocation coordinates (and to display them on a map) that is rendered in a form panel, so that ...
1
vote
1answer
182 views

How to sum the numbers of multiple (undefined number) textboxes with javascript?

I'm creating a table with php and html with values from a database, and the fields of the table are textfield. All the textfields from the 1st column have the same name, and all from the 2nd column ...
0
votes
3answers
264 views

how to validate atleast one value in multiple text field using jquery?

<script type="text/javascript"> var errorExist = false; $(document).ready(function(){ $("#form3").submit(function(){ var get_count = $("#form3 input[type=text]").length; ...
0
votes
3answers
65 views

Django: {{form.comment}} area size

I use standart django comments framework. template: <h2>Add comment</h2> {% get_comment_form for post as form %} <form action="{% comment_form_target %}" method="post" > {% ...
0
votes
2answers
138 views

HTML - Lock default value in text area and user insert more info

Im not sure on how to explain this but, what I want to know is there if there is any way to "lock" just one part of an text area in a html form. Example: <input name="example" type="text" ...
0
votes
2answers
643 views

Wicket - Set default value to Textfield with CompoundPropertyModel

I have a CompoundPropertyModel which maps to my Object. e.g. final TextField<String> adresseName = new TextField<String>("Adresse"); maps to public class Invoice implements ...
0
votes
0answers
175 views

jquery mobile form items on Android 2.3.6

I have an application form with textfields and selectfield using jquery mobile 1.2.0 . I have tested my application on Ice-cream sandwich, Jelly bean and iOS. Works OK. But I cannot type anything in ...
-1
votes
2answers
254 views

Changing value of text field with jQuery

I have a form input text field, and I want to change the text inside of the text field when the user clicks a button. I can get the specific textfield with jQuery, but cannot change the text with ...
-1
votes
1answer
71 views

Alternatives to dynamically created input text fields

I was previously using dynamically created input text fields on my form to allow a user to enter names of friends. However, on my redesign this form will be on top of an image inside a div and it'd ...
3
votes
2answers
373 views

Mixing radio buttons and text_field

I'm trying to combine radio buttons and text_field for a single value : = f.radio_button :system, "bacteria" Bacteria = f.radio_button :system, "mammalian" Mammalian = f.radio_button :system, "yeast" ...
1
vote
1answer
637 views

Validator function getting fired twice in textfield

Following code uses validator config of textfield in ExtJs: Ext.onReady(function(){ Ext.create('Ext.form.Panel', { title: 'Simple Form', width: 350, url: 'save-form.php', ...
1
vote
3answers
725 views

copy dropdown field selection into a hidden text field

I know this has been covered before, but i can't find exactly what i need.... to put things short, i need to copy the selected option from a dropdown field to a text box. And i have this code to do ...
1
vote
0answers
152 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, ...
0
votes
1answer
434 views

RoR - undefined method `merge'

I'm studing Ruby on Rails with the "RoR Bible" by Thimothy Fisher. But one of the examples doesn't work. It's code - http://pastebin.com/gtjLsdt0 The error is: NoMethodError in Contact#new where line ...
1
vote
1answer
309 views

include an image inside the sencha text field

I want to include an image (something like a '+' sign ) inside a textfield in sencha. Is it possible? Here is what I need Any help will be appreciated...
0
votes
1answer
552 views

Drupal custom form remembering textfield data

I am setting up a configuration page for a new module and I am having trouble getting my textfield to remember data I previously entered. I am setting #default_value by calling variable_get but the ...
2
votes
2answers
683 views

How to get rid of blue outer border when clicking on a form input field?

Hi I want to get rid of the blue "shine" that appears when you click on a text field and begin to input data. How is this done? I am a beginner so I am not that experienced. My code is: <input ...
0
votes
1answer
413 views

Autofill Text Field Value with Current Page URL

All I am looking to do is autofill a hidden text field with the current page URL, so that when the user submits the form, I know the page they sent the form from. This will save me a ton of headaches ...
1
vote
1answer
2k views

How to add multiple value textfield to Drupal form?

Is it possible and how to implement one textfield with multiple values in drupal form? Say, I have the next code: function mymodule_admin_settings() { $form['email'] = array( '#type' => ...
0
votes
1answer
1k views

JSF text field onchange submit tabbing

I have multiple text fields that each have onChange="submit();" in order to save the data immediately. The problem I have is that tabbing to the next field won't work because it will submit and then ...
0
votes
3answers
11k views

Select box with 'Other' option to display input text field. How to get value back for form submission using jquery?

I've got a form with the following select box: <fieldset id="workers_comp_info"> <p> <label for="i_n_r_reason">Reason why Workers Comp Insurance is not required:</label> ...
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 ...
0
votes
2answers
694 views

Rails - Help scoring an online quiz in RoR

I'm trying to grade a quiz application I would like to make. I have a questions model with and ask(the actual question), 4 choices(a-d), and a correct answer(string). In the view I have the 4 ...
0
votes
3answers
4k views

Saving new lines in a textfield to mysql field

Quick and simple (I hope) question; If a user inputs new lines in a text field, ie: 43 Dennis Beeston How can I save the new line rather than have it transferred to the mysql server as one line?! ...