forms

Forms - Dropdownlist

How to design a dropdown list that can have multiple selections using checkboxes. Can we do it using html/css or it requires javascript? For a visual clarity you can have a look at the image I have attached.image link ...

I want the simplest ajax form application

I want ajax application to process a simple form with textinput and submit button only , and without validation , i want to add this with a php script . I ask this because i don't know how to program with ajax or javascript . ...

Error 4005 Forms authentication failed - ticket supplied has expired

Aloha I'm running a website using ASP.NET 2.0. Every now and then (10+ times per day on 100+ users daily) I receive this error: Forms authentication failed - ticket supplied has expired. Here's my web.config snippet: <authentication mode="Forms"> <forms name=".CLLSAUTH" loginUrl="login.aspx" protection="All" path="/" timeout="60"...

POST data getting 'lost' somewhere

UPDATE So it turns out internet exploder's stranglehold on "security" to "make up" for being so bad at security was causing my problems. I should have checked that out first haha. Thanks everyone for the input, it has given me ideas on how to optimize my application :D I am writing a web app (in ASP.NET 3.5) that integrates with a ...

Show 'ghosted' example text in a field, and then clear it onblur

I'm trying to duplicate the effect used in the Firefox search box where, if the search field does not have focus ( the user has not clicked inside of it ), it just says Google in gray text. Then, when the user clicks in the box, the text is removed and they can fill in their search term. I want to use this to provide example field data ...

I want to create a form in SharePoint that allows the booking of time on a timetable

Hello, I am currently working on the student association's website. The student's association owns a couple of rooms and we want to build an online form which allows a student to book the room for a specific time, and we want to have a timetable to show which times are currently booked. Thanks a lot! ...

Better TreeView for Windows Forms - .NET 3.5

Is there a better free TreeView control that exists for Visual Studio 2008 / .NET 3.5? I believe I need something a little more powerful than the out-of-the box version. I'm not exactly sure for what yet but I thought I'd ask quickly before I get too far in to my project... Thank you! Best Regards, Frank ...

Django Forms - How to Not Validate?

Say I have this simple form: class ContactForm(forms.Form): first_name = forms.CharField(required=True) last_name = forms.CharField(required=True) And I have a default value for one field but not the other. So I set it up like this: default_data = {'first_name','greg'} form1=ContactForm(default_data) However now when I go ...

JavaScript for HTML Form

I'm a simple soul with simple needs, and I'm trying to configure a form. I detest forms. It needs to have JavaScript to transfer the data, it needs to send an e-mail with the data to an e-mail address, and it needs to redirect visitors to a pdf. CGI has always been confusing to me, and I don't know much JavaScript. I've already done ...

MySQL, PHP - Forms Help.

Greetings, I have the following code <? include("conn.php"); $sn=$_GET["sn"]; $sql="select * from kpi where no='$sn'"; $result=mysql_query($sql,$connection) or die(mysql_error()); while($row=mysql_fetch_array($result)) { $sn=$row['id']; $no=$row['no']; ...

Default JSF Form Behavior

I'm building a vanilla JSF app, and I'm having some difficulty understanding how forms work in this framework. If I make a JavaScript form submission ... document.myForm.submit(); ... on this JSF form ... <h:form id="myForm"> ... <h:commandButton value="Continue" action="#{foo.continueButton}"></h:commandButton> </h:form> ... ...

Use GET or POST for a search form

I have a couple search forms, 1 with ~50 fields and the other with ~100. Typically, as the HTML spec says, I do searches using the GET method as no data is changed. I haven't run into this problem yet, but I'm wondering if I will run out of URL space soon? The limit of Internet Explorer is 2083 characters. Other browsers, have a much hi...

How to read the parameters of URL in oracle form

Hi, I am using Oracle form 10 I want to know how can I access the parameters of URL in oracle form Ex: whenever I run the form it opens in a browser and the URL for the same is http://112.10.0.10:7778/forms/frmservlet?config=pkamble I just want to know how can I access the value of 'config' parameter inside oracle form code. when w...

Form to Exe

Hi What is the easiest way to convert a simple form into an exe file? I have an offline paper based form. I need to convert it into a software that people can use on their computers to fill and submit information. Since the form (it is a tax return) requires considerable time in filling, it is not convenient to have it online. I would...

Browsing and editing saved form data in Firefox

Hi, Is anyone familiar with a way to browse and edit/delete saved form entries in Firefox? I know I can: Delete all form data, using the Clear Private Data dialog; Delete specific entries in a form using shift-delete when the cursor is over them (*). What I want is a way to see all saved entries for a specific keyword, edit them, a...

Generating Login and Registration Forms with Contrib.Auth in Django

I'm new to Django and in bouncing around the framework over the past few days I haven't been able to figure out how to properly install the django.contrib.auth app in my project. Well, installing is probably not the right word, but configuring it for my purposes. What I'm truly hoping to do is extend the built-in classes to simply creat...

How to get form fields from a specific fieldset?

I'm writing a HTML form that's divided in fieldsets, and I need to get the form fields from a specific fiedset in a function. Currently it's like this: function conta(Fieldset){ var Inputs = Fieldset.getElementsByTagName("input"); var Selects = Fieldset.getElementsByTagName("select"); /* Doing the stuff I need to do ...

Cleaning form data in Django

How can i clean and modify data from a form in django. I would like to define it on a per field basis for each model, much like using ModelForms. What I want to achieve is automatically remove leading and trailing spaces from defined fields, or turn a title (from one field) into a slug (which would be another field). ...

jquery/js -- How do I select the parent form based on which submit button is clicked?

Hello! I have a web page with 3 forms on it. Not nested, just one after the other (they are almost identical, just one hidden variable that's different). A user will only fill in one form, and I'd like to validate/etc all the forms with only one JS script. So how, when a user clicks the submit button of form#1, do I make my js script ...

How to get the parent control from an assigned context menu using C#?

I have a few listview controls on a windows form and i've assigned a common contextmenustrip to them all using the properties grid in VS2005. Now when a selection is made from the contextmenu in any listview, is there a way i can get the correct hosting control of the raised menu? ...