forms

Doing Forms With Just Windows SharePoint Services 3.0?

For the most part my organization is happy with WSS 3.0 (no upgrading to MOSS) with one exception, there is really just one form we'd like to put up somehow. It's fairly big form (basically change requests for IT services, on paper it's easily 2 full 8.5 by 11 pages). We thought about Custom ASP.NET coding as a separate stand-alone pa...

G-mail style form submission on table data

I have table rows of data in html being filled from a CGI application. I want each row to have a check box next to it so I can delete multiple rows, just like in gmail. I figured out the basic text form and was able to send it to the CGI program to delete the row, but I don't want to have to type in the row name to delete a single fil...

Hyperlink works - Html Form with a Submit button doesn't

I have a PHP script that pushes the headers to allow a file to download. This script works fine when it called via a hyperlink or through the browser using link. This is how it looks like: <a href="download.php?file=test.mp3&properFilename=Testing File">Download</a> I want this to be a button (sbumit) instead, so I did this: <form ac...

Joomla Forms extension

Hi guys, Does anyone of you know a good free joomla extension to create forms? I have searched the joomla site but most of them are commercial and the free ones very lite and buggy. I have Joomla 1.5 installed. I need to make some forms for my site 34life.org to subscribe some volunteers. Thanks in advance. ...

Form submission asks to save exe, would like it to run instead

When I submit my basic form from the html file, it gives me the option to save the exe I just want the exe to run instead. (To re-populate the template html file) What do I need to do to just run the exe once the form is submitted? <form action="Lib.exe" method=POST ID="Form1"> Enter Index to DELETE<br> <input type=text name="user" ID...

Checkbox form validation in Firefox

Form validation for check boxes only seems to be working in IE....? Anyone have a sample of it working in FF? Thanks. ...

multiple forms

For example, would like 5 checks boxes to have their own submit button and the other 5 to have their own submit. Should be independednt of each other but they are not grouped together in the html page. Do I nest the other form? Do I put them under the same name and if so how do I distinct the submit? Submit seems to submit the form name...

How do you handle form customizations for different customers?

In our application we sometimes have to make minor GUI modifications for different customers: One customer has an input field the others don't have. Another customer has all default fields but one of the optional input fields is mandatory. A third customer has the default fields, but one field has its caption changed A fourth customer ...

Same partial on multiple views returning to whatever view it was called from

I'm currently re-using a partial on two different views. View A View B The partial belongs to Model A but has an association with Model B so it is applicable to Model B as well. It contains a form and when data is submitted, it always redirects the user to View A. However, when I submit the form from View B, I would like to...

RESTful way to do degradable Multiple Models in a Form in Rails

So far, I've not been able to find a solution that is able to allow a form to interact with two models that have a one-to-many relationship. Say for example, a customer has many items. Currently, I've implemented solutions using Javascript that enables users to add/remove rows to the item list. Let's keep it simple, we're creating new r...

Is there an application that generates an HTML form from a PDF?

Is there an application out there that Generates an HTML form from a PDF file? Also, it would need to generate the HTML form so that it would be able to submit to the PDF to fill out the fields inside the PDF. PDF is not so good at validation and it's just a kluge interface to begin with. ...

NHibernate Insert is Committing but object is not persisted in table.

When debugging everything appears good. The insert commits and there is no roll back, no exceptions. I sure hope some can help with this. Here is my call: using (ITransaction transaction = _session.BeginTransaction()) { _session.Save(calc); transaction.Commit(); } Real simple mapping: <hibernate...

Organization of many forms on many pages

I have a web app I'm building that has about 50 forms. I have a very nice form-building class that handles the creation and submission of these forms very nicely and it's wrapped with error handlers, etc. No help needed there. However, the forms are scattered through 120 pages. I could really use some weigh in from you guys about the...

jQuery + MVC User Controls

What I'm trying to do is pass parameters to a user control view which will update a div tag and render the new data based on a hidden user control there. I know how to update a div tag using the Ajax.Form() Helper Method but passing parameters and updating the partial control is beyond me. I've never used jQuery and looked up some tutori...

MVC asp.net: Submit multiple forms

When submitting one form from view, how can i also read or have controller read data in another form in same page? ...

Narrow a list of items as you type with javascript

I am trying to find a plugin or a solid way to narrow a list of items as a user types. Essentially there would be a list that is always visible containing product names for users to scroll through. At the bottom would be a form where you can type in the name of a product. As you type the list is narrowed down. I have been trying to fin...

Delphi, possible to make a form modal to specfic parent form only?

I've got an application where there's a main background form, from there user can only non-modal forms that maintains different part of the system. The non-modal forms overrides the CreateParams method so each one displays a button in the start task bar: procedure TfmMaterialsPlanning.CreateParams(var Params: TCreateParams); begin in...

Determining which submit button was used?

Is it possible to determine which submit button was used? I have a confirmation form with 2 submit buttons. The first would confirm the order, do some DB tasks, then redirect. The second, which is a Cancel button, will just redirect to the same page, without doing any DB tasks. Is it possible in the servlet, preferably via the reques...

Java, GUI builder or hand coding?

My company software has a lot of forms, till now we wrote the code by hand (MVC way). We consider start using GUI builder. There are few problems with using a Builder. Parts of the code are not readable. Parts of the code are not editable. It will be harder to edit the code later. We will have to continue using the builder in the fut...

Get current date and time in PHP

What PHP function file can return the current date/time? ...