|
Currently I've got a PHP page query.php with a form that presents a list of countries with a submit button:
Countries [] nation1 [] nation2 [] nation3 [] nation4 SUBMIT
they're checkboxes to the same array, and the form references the page <form method...
Started by Andrew Heath on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
/* ....
In this case, you can have a cascade of includes: whenever the input for a form is sent, the form includes the next form.
AJAX for usability, but make sure your form works when JS is disabled/unsupported.
Are great.
|
|
Hi,
My question is about nHibernate, or any other ORM for .net that can do what I am looking for : for my web developements, I use Django Framework; the admin pages are automatically generated, so that you can do the CRUD operations through a GUI -- web...
Started by Peyman on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There are a couple of scaffolding tools for asp.net mvc but I don't think none of them can be compared with Grails scaffolding capabilities: http://www.grails.org/Scaffolding
http://sharparchitecture.net/ http://www.twinforms.com/products/mvcscaffold/... .
|
|
I've got Acrobat Pro 8 and Word 2003.
I've got a form in Word creating using form fields. What I want to do is convert this document to a "fill in" PDF form automatically. In other words, replacing Word's form fields with Acrobat's form fields.
I can'...
Answer Snippets (Read the full thread at superuser):
This usually does a fairly ....
Create a PDF from the Word doc and then run 'Form Field Recognition' from the Acrobat 'Forms creating a new form: Import a Word Document
I haven't tried it because it's apparently incompatible' menu.
|
Ask your Facebook Friends
|
Hoi!
I have a form I wish to submit, but I need to add the PHPSESSID, because some clients allow no cookies.
There are several javascript functions on my page which displays a list of users (search, sort, open details), the page is generated by PHP.
Now...
Started by bastianhuebner on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Another stab in the dark: Are you adding the hidden ....
A lot of browsers will not submit form fields which are hidden via display:none.
Or a lot) of form submits need some state information to be passed, an input type=hidden field; tag.
|
|
After migrating my Visual Studio 2003 projects to VS2005 (or VS2008) my forms would still be inside a single file.
New forms on VS2005 and VS2008 are created using partial classes where all code generated by the editor is kept in the Designer.cs file....
Started by Jonas on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This is because the project file;/Compile>
Another solution I experimented with was simply creating an new form and dragging the controls from the old form to....
Changes to the form still don't generate in the correct class file.
|
|
I am doing an application like Form builder in Cakephp.
I've created the module for Designing the forms. Is it a good way to create a separate table for each forms in the case of form building?
Started by Aruna on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
A good form building app should be able to look to generate multiple forms from the same table (perhaps one form would be too long, perhaps an easily overridable layer....
Then you build your forms.
And as efficient as possible.
|
|
I have two Zend_Forms (form1 and form2). I would like to combine them so I have a third form (form3) consisting of all the elements from both forms.
What is the correct way to do this with the Zend Framework?
Started by Andrew on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Add elements to $form2 /* Tricky....
Add elements to $form1 $form2 = new Zend_Form(); // ...
The only difference between Zend_Form and Zend_Form_SubForm are the decorators:
$form1 = new Zend_Form(); // ...
You can use subforms.
|
|
Http://www.devdemon.com/forms/
Forms are finally simple and powerful in ExpressionEngine. Delivering like no other module seen before in ExpressionEngine we make the job of creating forms simple for you and your content admin. Previously forms were a ...
Answer Snippets (Read the full thread at expressionengine):
Forms 2.0.3 has been released!
http://www.devdemon.com/forms/
Version 2.0.3
- ADDED: Notification field would trigger PHP errors if the form was immediately saved
- BUG: Not specifying the default email not show up in certain versions....
|
|
Hi,
I have a page that contains several forms that are identical throughout a page. I submit these forms using the $.ajax() method.
As I see it using classes to identify/submit/validate the individual forms will likely be problematic. Passing the form...
Started by Derek Adair on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You could select them by their index:
$("form:eq(0)").serialize(); // serialize first form on page $("form:eq(3)").serialize(); // serialize fourth form on page']").closest("form....
There are many ways to select forms.
|
|
My application is based on modal forms. Main form opens one form with ShowModal, this form opens another with ShowModal, so we have stacked modal forms. There is sometimes a problem that when we call ShowModal in new form, it hides behind previous forms...
Started by LukLed on
, 6 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
And you may also find the need PopupParent of your modal dialog to... .
I have found that using the "Always On Top" flag on more than one form causes problems with the Z order.
Make sure that the popup form has the other form as owner.
|