0
votes
2answers
21 views
jQuery validation plugin + CKEditor - validate when typing
Hi!
I'm using CKEditor on a textarea and the jQuery validation plugin (http://bassistance.de/jquery-plugins/jquery-plugin-validation/)
With the jQuery plugin it's possible to mark a field as empty …
0
votes
4answers
2k views
Disable button after submit
I'm trying to disable a button when a user submits a payment form and the code to post the form is causing a double post in firefox.
This problem does not occur when the code is removed, and does not …
0
votes
4answers
39 views
How to show or hide the next div based on all the form fields of the previous div being filled or not!
I have a form with many divs inside. Each div is categorized and has various fields to be filled up by the user. I want to have a flow here so that the user can fill the fields in the second div only …
1
vote
3answers
42 views
Ajax file upload
Hi,
I have a form that upload a file, I would process the file inline with ajax but I don't know how I can get the data with ajax.
In my script I use this method:
$.ajax(
{
…
0
votes
3answers
25 views
Insert two rows on one create action in controller
I have a form that is used to record a transaction. Liquid is moved from one tank to another. My form takes the from tank and the to tank and the number of gallons transferred. i would like this to …
0
votes
2answers
16 views
define cursor position in form input field
i have several inputfields with some defoult values. i have defined tabindexes to jump with tab-button from field to field. the problem is if i jump to a field the fieldtext become selected and if i …
0
votes
4answers
36 views
How do I submit a “file” input without submit button with JavaScript?
There is a way to automatically submit a form without clicking to a "submit" button?
I have a form with one "file" input. I would submit the form after the user have selected one file.
0
votes
2answers
13 views
How do I add an email preview button to a form in MS-Access 2003
I'm creating a form on MS Access 2003 that will send out a html email newsletter to a list of email addresses. How do I put a preview button into my form that will let me preview my email before I …
0
votes
2answers
29 views
How to hide single labels on a symfony form?
Hi,
I am creating a very custom form on a symfony project and currently I have something like this:
foreach ($foo as $c) {
$fields['crit_v_'.$c->getId()]=new …
0
votes
1answer
21 views
How can I set an image for my BackgroundImage in my WPF Form?
In Windows Forms, I would go BackgroundImage and just select it from the comboBox. But here there is no such property.
How would I go about this?
2
votes
4answers
41 views
Tracking information over many pages for a website
Hey SO,
I have a sort of vague question that you guys are perfect for answering. I've many times come across a point where I've had a form for my user to fill out where it consisted of many …
0
votes
0answers
8 views
Comparing window.parent/opener with NULL or ‘undefined’
If I have this method:
this.getForm = function ()
{
try
{
var frmIndex = arguments[0];
if (isNaN(frmIndex)) frmIndex = 1;
if (window !== null)
{
if (window.opener !== null)
{
…
2
votes
5answers
154 views
Delphi - Creating controls before form Create is run?
Well, my problem is as follows:
I have a Delphi 5 application that I'm essentially porting to Delphi 2010 (replacing old components with their latest versions, fixing the inevitable Ansi/Unicode …
0
votes
1answer
49 views
PHP - How to use arrays for form input and update respective database records
I'm new to PHP... I want to know how to populate a form from mySQL. I'm stumped at the input section where I am trying to allow the user to select choices for radio button /checkbox for each record. …
0
votes
5answers
70 views
php contact form clean code
Trying to make my own contact form with php. Is there a better/cleaner way to approach this?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1 …
