HTML forms are used to pass data to a server. A form is essentially a container that can be used to hold any amount of any subset of several types of data.

learn more… | top users | synonyms (1)

1
vote
1answer
30 views

Installing jQuery plugin into wordpress

I have a form that a user will fill out based on fitness test results i.e. push ups per minute, sit ups per minute, 2 mile run time etc. This form is submitting to a custom template page which also ...
-2
votes
2answers
51 views

Inserting data to database from dropdown menu - PHP MYSQL [closed]

I have the following code in my addproduct.php which connects to doaddproduct.php after clicking a submit button: <tr> <td>Category Name</td> <td>:</td> <td> ...
0
votes
4answers
55 views

Delete form fields using Javascript

Is it possible to write a Javascript function to delete form a field when somebody does not fill in the field? <form id="myform"> <label for="q1" id="q1label">question 1</label> ...
4
votes
0answers
30 views

Nesting Fieldsets under Radio or Checkbox items: Zend Framework 2

I would like to create a fieldset under each radio/checkbox item. e.g Which animals do you like [x] Cats [Fieldset of cat related questions] [ ] Dogs [Fieldset of dog related questions] ...
0
votes
2answers
28 views

Symfony2 - Reuse form type multiple times in a form

I am trying to make a form where a user can insert his curriculum vitae data. At the moment i have created an experience form type containing all the experience related fields. The problem is that ...
0
votes
0answers
7 views

How to add an unselected item to a field:select in Spring MVC?

I'm trying of add a "field:select to a form without an item selected in my .jspx file, using Spring MVC, but I can't get it. I need to add a first item empty or with a phrase like "--- Select an ...
1
vote
1answer
16 views

How to submit a form from an element to a controler and store it in another model

I have a controller Users_controller and a function travel().i have a view travel.ctp for that function.in travel.ctp i use an element profile.ctp to display some content that is stored in the ...
3
votes
2answers
37 views

Why does display:block not stretch buttons or input elements

I'm trying to understand the reason behind this problem: What's the underlying reason behind <button> or <input> elements not behaving like other elements when set to display:block! I'm ...
1
vote
1answer
51 views

Cookie not being read by html form

I am working on a website where people can search based on their postalcode. When the visit the page for the first time a popup dialog opens. You have to fill in your Postalcode and a radisu of x km. ...
3
votes
3answers
41 views

How can I disable non-romanised characters and symbols in a text field?

I've a registration page and I've disabled the spacebar on the username field using the following code: <script type='text/javascript'> //<![CDATA[ $(window).load(function(){ ...
0
votes
0answers
17 views

SharePoint. For the same list item should be one user in edit mode others users in display mode. Code-behind

I have a task: When one user open list item on Edit in SharePoint others if try to open the same list item will see display form and delete button should be disabled. Anybody knows how to do this by ...
0
votes
0answers
15 views

Populate form textBox with a string from another application

I thought I could simplify my specific question telling I wanted to populate a text field on a form with the output of a bar code reader. Searching on the net I learnt the bar code reader can act like ...
0
votes
2answers
66 views

Ajax Post not working with Form Validation

I tried looking at past posts but didn't see anything that would help my situation. I created an ajax post with validation for my website but for some reason it won't work with the validation. If I ...
1
vote
1answer
43 views

Building form that can be reused everywhere in HTML code

First of all I am a beginner-level UI developer. I have a form that I want to enable it several places in my code [it would be great if I can give this via js file so anyone can use it with few ...
0
votes
1answer
57 views

jQuery- call a function/method before submitting a form with js or jQuery

I am trying to call google analytics event tracking method before submitting a form on this page This is the code that I have now: $(function() { $('#findbooking input').each(function(){ ...
0
votes
1answer
22 views

django using specific instance for ModelForm object

For GET form_page.html, my view has a specific my_id to instantiate a form. (ie, when a user first sees this form_page, an instance is already created for him, and he's actually modifying it for the ...
0
votes
1answer
29 views

Submit field without completing “hidden” mandatory fields unless they are selected

I have a Member Registration Form where by Payment Details are required ONLY when a certain selection is made. If I am a Member and just wanting to register myself, it won't cost me anything so no ...
-2
votes
1answer
19 views

Integrating Buycraft.net's Form/payment gateway with my bootstrap site

Buycraft.net have introduced a way to intergrate their webstore plugin into your website. Buycraft.net is basically a auto-donation system for Minecraft. You set up your own little webstore with them. ...
0
votes
3answers
37 views

Enable control of form based on form it was loaded?

How to enable control of a form based in form it was loaded? For example if Form3 was open from Form1 the button that will be enable in Form3 is button1 and if Form3 was open from Form2 the button ...
1
vote
2answers
45 views

Ms Access form control calculate value based on time of day

I have a combo box [cboShift] that has two selections "Daylight" and "Afternoon". I want to auto select the shift based on the current time. So if the current time is from 2:01am to 4pm then I need ...
0
votes
1answer
22 views

Entering into form with Mechanize

Im writing a smaller part of a larger program that is using mechanize to input a YouTube URL into a form but i cant get it to work Im using the first form on the page nr=0 but i don't what to put in ...
-1
votes
1answer
13 views

problems with jquery form validation code

I am trying to create a form validation script. Everything that I have done so far is below and hopefully self-explanatory, it's not very complex. However, I am having one problem, which is that it ...
-1
votes
2answers
48 views

If else statements in web forms to calculate score in javascript or HTML

Im trying to create a simple web form to calculate a score from raw data. For example field A (numeric) : if number less than 100 return number 1, if 100-150 return number 2 and if more than 100 ...
0
votes
2answers
49 views

Wicket search form using loadable detachable model, null pointer

so a little about the project: basically been trying to get a search function working to update a listview which I have done before and had no problem; until now. I cannot seem to find the issue, here ...
0
votes
2answers
27 views

Open my form results in Iframe on another page

Hi I have page "A" with small form search for Domains and page "B" with my site design and layouts and one "ifarme" named "domains" now what I need is when the users search for domains they will see ...
0
votes
2answers
49 views

Form action with php

I have a form I am trying to use the input to append to the form action. Here is my form code: <form ACTION="_update/update.php?orderId=<?php $_POST['orderId']; ?>" name="msChangeForm" ...
1
vote
1answer
67 views

Allow Shift + Enter to Submit Form

I have a simple form whose action posts to a basic PHP script. The problem I have discovered is that if someone is typing fast and accidently has the Shift key down when they hit "Enter" a whole slew ...
0
votes
1answer
9 views

Rails: Replace Submit Button With Pure HTML

I have a simple form with several hidden fields: = form_for item.votes.new, remote: true do |f| = f.hidden_field :value, value; 1 = f.hidden_field :voteable_id, value: item.id = f.hidden_field ...
0
votes
1answer
18 views

Rails f.check_box set checked/unchecked values

so I got a form helper in rails with a checkbox; I want that checkbox to have values as "thatvalue" or "thisvalue" when checked or unchecked; I haven't found anywhere how to set this up with ...
0
votes
0answers
6 views

How to create a webpy 0.3 form field to get date of birth?

I need to create a registration form in webpy framework. As the form feature of web module have a definite format, I couldn't create the date of birth field. How to make a webpy form with a field to ...
-2
votes
1answer
45 views

How to send array with various submit buttons?

Can you send an array with various values in html? I would like to send different array values with various different submit buttons all within one <form> element. Here is what I am doing ...
0
votes
1answer
37 views

jQuery Ajax PHP Search bar only works one time

I've build a small search engine for my websites blog articles, I'm submitting the form with Ajax and then returning the results and replacing the old content with the new search results the problem ...
0
votes
4answers
47 views

Execute PHP from HTML form without redirecting to PHP

I have a mail form on my HTML that calls a PHP. When I click Submit, It redirects to the PHP and shows various alerts about the form. I want it not to redirect to the PHP and show alerts on HTML. ...
0
votes
2answers
35 views

ToolBox, Windows Form Application

I've created Windows Form Application for Visual Studio 2010 with C# so that I can make the form execute SQL statements from my Database. I've looked through several tutorials and examples and many of ...
0
votes
3answers
16 views

Create a new record that has a belongs_to relationship, passing the ID of the model it belongs to

I'm trying to create a new contact object from an account object's "show" page. I know the below codes isn't correct. If I'm on the "show" page of the account how do I pass that accounts ID to the New ...
0
votes
4answers
44 views

How to get data from form input as it's typed

I'm not sure this is even possible, but I'm trying to show the input data in a 'preview' section before the form is actually submitted. I've drawn up this Fiddle to help out. HTML: <form> ...
0
votes
2answers
47 views

AJAX/PHP/JQUERY mailing contact form gives correct error message when nothing is in form but fails to run Ajax

I'm following the following tutorial to place a form on my website using PHP, AJAX, and JQUERY that will send the form information to my email: http://www.spruce.it/noise/simple-ajax-contact-form/ ...
0
votes
1answer
50 views

How can I change the Visual Studio default Form font? [closed]

I had some problems with my Windows fonts, because of that, VS changed the default Form font to Arial. How can I go back to Microsoft Sans Serif ? I know that I can change the Font at the Form ...
1
vote
1answer
30 views

JQuery serialize() method not ignoring some form controls

I am trying to serialize a form elements to check for dirty data. It stops working when I try to include the controls that I want to ignore during serialization. I have a form comprising of ...
0
votes
1answer
26 views

Generate code from user input

I am trying to make a simple code generator using inputs added by the user. It will go something like this: "predefined code" + UserInput1 + "predefined code" + "UserInput2" I assume I will need to ...
-1
votes
1answer
34 views

JSF forms strange behavior

I have no idea why my forms behave in such way. This is my JSF page: <h:body> <h:form> <h:form> <h:selectOneMenu value="#{productBean.product}" ...
0
votes
2answers
33 views

Assistance kindly requested with child control on a simple form Visual C#

Hello everyone I am new to programming and studying C#. I am only a beginner. I have a form with a GroupBox control and within the GroupBox there is four TextBox controls. There is also a button. I ...
0
votes
1answer
17 views

MVC3 JQuery validation not working in non-English locales

In my application, we have a page where we are able to edit a user's details. Some of this information is validated to ensure that some fields are required while others are not. When an invalid entry ...
0
votes
1answer
37 views

CasperJS seems unable to recognise password field on login form

I'm brand new to CasperJS and coffeescript. I have a very simple part of my CasperJS coffeescript test to login to a website, that used to work before a recent change to the password element of the ...
-7
votes
1answer
78 views

C# Deactivating a form after 1 opening [closed]

I have a problem, i am making a Program with a Registration Form. The user, shouldnt be able to open the form, after he already registrated. I cant find a method, how to deactivate the form after the ...
0
votes
1answer
31 views

Directing via an Action to the same JSP page currently loaded, reloading the user's input Data Struts 2

I currently have a JSP Page with a form in it. On submition of this form I want to reload this same page with the form being populated with the user input values before the form was submitted. The ...
0
votes
2answers
27 views

Getting hidden inputs in HTML (that has period in name) from a form using Javascript

I have the following HTML: <body> <form action="/test/interop/InteropServlet" method="post" id="formTester" name="formTester"> <input type="hidden" name="ApiName" value=""/> ...
0
votes
1answer
21 views

Simple Progress Bar to input file

I have a basic html form with a <input type="file" /> field: <form class="form-horizontal" action='helper.php' method="POST" enctype="multipart/form-data"> ...
0
votes
1answer
34 views

Form cleaned_data and geting values

Hi i have problem becouse im using smart select ( 3 select fields )to filter my table. But engine id is wrong and dont get corect query. I need to get no id from db but common names. views.py def ...
-3
votes
1answer
28 views

Form values not submitting to php mail

My problem is as follows: I have these inputs: <input type="text" value="" class="span2 check-in-date" id="checkin" value="2012/11/22"/> <input type="text" value="" class="span2 ...

1 2 3 4 5 604