The multiple-forms tag has no wiki summary.
2
votes
1answer
54 views
Multiple Forms or Multiple Submits in a Page?
I'm creating a page with the products sold in the website. I'd like to include an "add to cart" button near each product, which are listed with markup similar to this:
<h4 ...
1
vote
1answer
85 views
How do I make floating forms such as in Lazarus or Photoshop using C#?
How do I make it so when a program loads, it opens multiple forms, but they're like tools, such as in the Lazarus IDE there are multiple windows that all affect each other?
1
vote
2answers
81 views
Design apllication with muliple forms within one main form
I want to make an application that have one main form that have one functionality = Add new form.
I dont know how forms will be created, they are created dynamically by the user (AddForm methos from ...
1
vote
1answer
350 views
Linking through multiple pages in J2ME
I have been learning J2ME for a couple of days now. but I have a major problem; My mobile application has about 5pages: the first page extends MIDlet while others extends form. After the first page is ...
1
vote
2answers
134 views
django 1.3 - Saving multiple forms does a partial save
I'm having some troubles making multiple forms in django. I have two models, Space and Entity. Each space can have N entities related to it.
I've created a form with two ModelForms, and writed a view ...
1
vote
1answer
219 views
Multiple forms with one page in tipfy
I haven't been able to find an example of using multiple forms on one
page (or one Handler) for tipfy. I'm trying to allow users to both
answer (form 1) and comment on an item (form 2) from the same ...
1
vote
1answer
459 views
Multi-dialog program in PyQT will not close
For my project, I require multiple dialogs to be linked to each other. One button would go to one level, another button would go back two levels. To get a basic idea of what I'm looking for without ...
1
vote
1answer
885 views
Using ViewModels in ASP.NET MVC 2 - multiple forms
I couldn't find any documentation around using multiple forms in an ASP.NET MVC 2 ViewModel approach.
i.e. In the built in application when you select New MVC2 web app, the register page uses a ...
0
votes
1answer
25 views
Media Player issue
i'm making a mediaplayer concerning the COM-library "WMPLib"
The program consisted of 1 form.
I make use of the WMPPlayState Enumerable, and has run smooth until now with a playlist and everything.
...
0
votes
0answers
83 views
Using ViewModels in asp.net mvc 3
Here is my scenario: (These all have to accomplished in the same view as an accepted requirement)
User enters a few search criterias to search users.
Page lists the search results with an update ...
0
votes
2answers
59 views
jQuery - submit on return for one form disabling submit on return for another form
I have a page with more than one form. One form (see below example) has an input to add rows to a table on the page. Each of the rows in the table can be selected (checkbox) on/off. The other form ...
0
votes
2answers
66 views
I can populate hidden divs only after the second form submit
I can populate hidden divs only after the second form submit. After the first submit there is an error. Why? Using jQuery Form Plugin. Any idea? Thanks.
$(document).ready(function() {
// get ID from ...
0
votes
1answer
73 views
upload multiple files to server, and write to database
So at the moment I have the following code in my html <input type="file" required required="required" name="image" multiple="">
and then before I added the mutliple="" tag, this always worked ...
0
votes
2answers
79 views
Displaying forms using Tree in Qt
I'm building a Qt plugin with multiple forms. I have a main form which has a tree widget placed on the left of the form.
I want to add items to this tree, such that clicking on these items would load ...
0
votes
2answers
48 views
Multiple form_tag in rails application
This is the code in my logins_form.html.erb
<%= form_for(@login) do |f| %>
// code here
<%end%>
<%= form_tag(:controller=>'posts', :action=>'index') %>
// ...
0
votes
2answers
82 views
Best Practice: Multiple Forms
Is it considered best practice to have multiple forms in an HTML document when each of those forms performs a different action? Here's what I'm doing: I am making a search page that will query my ...
0
votes
0answers
59 views
Show Second Form Smoothly in A Web Installer in C# [closed]
Possible Duplicate:
Controlling user workflow in Winforms
So, I'm making a web installer using C#. The question is, normally loading forms for the first time makes Vista+ make some effects. ...
0
votes
0answers
154 views
Spring MVC 3.0 with Apache Tiles - Mutiple Forms in one page
I'm using spring mvc (3.0) with apache tiles in my project. I have multiple forms in a single page rendered through tiles.
The login form and search form are common to most pages. The “body” in the ...
0
votes
2answers
92 views
WebForms submitting specific form with enter key (not clicking)
Say I have one full-page form, but within the form, there are two or more events that need to take place on submission: Login & Register
Site.Master:
<%@ Master Language="C#" ...
0
votes
1answer
385 views
codeigniter multiple field submit with a single form and button
i have multiple form which will be generated 4 times with the same field with a loop. and i am confused how to submit these fields in same database table with loop.
my form looks like this:
<form ...
0
votes
2answers
198 views
PHP/MySQL - how to combine variables from separate forms to build a query?
Please see the code in this pastebin: http://pastebin.com/5gKwb7gi
It is quite a lot of code but I think all you gurus on here will understand it!
Basically what I have just confused myself is, I ...
0
votes
1answer
197 views
C# App database - small, miltiple-form application - forms need to exchange data via database
To give you some background, the project I am working on is a poker tournament manager. It uses two forms - the main form will display information throughout the tournament, such as players remaining, ...
0
votes
1answer
437 views
Multiple Contact Forms on Page PHP - No Page Refresh
Is it possible to have multiple contact forms on one page and still validate and send an email without the page refreshing.
I have used the tutorial below but if copied obviously this still only ...
0
votes
1answer
291 views
ASP.Net using multiple form tag and post them to another page
I don't know it's even possible but I try to achieve to post data from one page to another using the second form.
The problem is I need a form tag for the user interface containing callback panels ...
0
votes
1answer
782 views
Open a form from an InfoPath form with values from the first to the new
I have been working with InfoPath forms for the last two months or so, and I now have the following requirement:
I have a form which is filled in by certain users, then sent to other users. The ...
0
votes
1answer
213 views
Two forms in ASP.NET
You can only have one form runat="server" per page apparently.
My page has one form, where it loads in a list of names. This form allows you to add a new name to the list as well.
I've attatched an ...