forms

get one value two times with jquery

I have this code in jquery : $("#order_btn").click(function(){ var totalprice = $(".price_amount").text(); $("#totalprice").val(totalprice); }); When I submit this form with a hidden value i will get the totalprice value two times, if its 200000 i will get 200000200000. why ? <input type="hidden" value="" name...

Strange CSS margin problem.

I'm styling a form designed by a client with the following structure: <div class="formRow"> <div class="fieldName"> Email </div> <div class="fieldInput"> <input .../> </div> </div> The width of the form is 500px, but the fieldName div and the fieldInput div stack on top of each other instead of sitting ...

ENTER key on a FORM with a single Input Field, will automatically SUBMIT with GET

Why is it that a form with a single input field will reload the form when the user enters a value and presses the Enter key, and it does not if there are 2 or more fields in the form. I wrote a simple page to test this oddity. If you enter a value in the second form and press Enter, you'll see it reloads the page passing the entered val...

C# ASP Load sequence forms authentication

I have a Windows application which has a browser in it. The Windows application opens a webpage in the browser. With this request it also sends form data (post method) to the webpage. Then, the webpage reads this post data and then the user is logged on. The webpage that is being called is part of a web application that uses Forms Authe...

Asp.net - Post form data to a seperate URL without creating a new Request

While this is similar to other questions, I've been unable to figure this out, and I feel pretty dumb for not knowing how to do it. 1) I can't use the PostbackURL property for the button click. Basically what I need to do is, when a user clicks a button, I need to post data to a separate URL. That data is not found within the form. I...

Change the maximum width OR maximum height of a form in .net

I've been meaning to ask this question for a while. It appears that if I want to set a maximum width of a form then I have to set a maximum height as well. Is this right? If so, which of the multitude of variables do I use, in this situation, to set the maximum form height to the height of the window? Screen.PrimaryScreen.Bounds?, Sc...

Constantly update a form with a processes standard output

I have a C# form that has a text box that needs to constantly update with the output from an exe while the exe is still running. I know how to update it after the exe has finished but its the constant updating that i need. ...

asp.net form submission problem

I need to accomplish the following and need help with #2 below My site has a page with form and the submitted form data needs to be written to a database on my site. After it is written to the database, the same data submitted on the form needs to be sent to a page that processes it on another site so as if the form submission came f...

Jquery .post () giving error message "missing : after property id"

I have written a form using the jQuery .post() function to post the data to a php file. The error I keep getting is "missing : after property id". Any help would be appreciated. Here is the form code: <form id="ev-form" name="ev-form" action="/new_event_submit.php" method="post"> <fieldset> <ol> ...

Are the order of Checkboxes in the FORM and the POST array the same?

I have several checkboxes and I am trying to take a lazy approach of inserting them into the DB. So I wanted to know, would the order of the checkbox array (checkboxes[]) in the POST super array be in the order that they are in my html page? If not, then I will just stop being a lazy developer! Thanks for any help. ...

Rails simple form gives InvalidAuthenticityToken error

I have a simple form like this: <form name="serachForm" method="post" action="/home/search"> <input type="text" name="searchText" size="15" value=""> <input class="image" name="searchsubmit" value="Busca" src="/images/btn_go_search.gif" align="top" border="0" height="17" type="image" width="29"> </form> And a controller with th...

Forms in html - How do I make the form do 2 things?

I have a form to sign up to getting a rss feed through Feedburner. this is the code - <form action="http://feedburner.google.com/fb/a/mailverify" method="post"> <p><input name="email" type="text" /></p> <input name="uri" type="hidden" value="dafyomi" /><input name="loc" type="hidden" value="en_US" /><input type="submit" value="clic...

ActiveRecord error messages: translation for fields

I've used the instructions specifies in http://guides.rubyonrails.org/i18n.html to translate fields of my model, but the labels doesn't come translated. What I'm doing wrong. I have a User model with the field name and I'd like to have it translated to Brazilian Portugues (pt_br), so I got my pt_br.yml: pt_br: errors: "Erro!" a...

jQuery - Disable Form Fields

Hey all, I have 2 fields: 1 input, 1 select box. Is it possible to make the browser disable one of the fields when the user uses the other? For example, if the user is entering data into the input, the select box is disabled. If the user is selecting data from the select (dropdown), the input is disabled. Any help with this would be ...

How to use CSS to square the corner on a submit button

How do I square the corners of a submit button? Can it be done with CSS? I just noticed that Stackoverflow buttons are pretty much the same thing (don't close it for mentioning SO, just want to illustrate what I mean). ...

Is it possible to populate a google form from a google spreadsheet?

I'd like to create a form that uses the data from the spreadsheet, so that it's dynamic. Is it possible to do this? I haven't been able to find anywhere that describes how, or any examples. All that seems possible is to populate a spreadsheet from a form, which I'll also use but its not the primary concern here. ...

Proper way to handle multiple forms on one page in Django

I have a template page expecting two forms. If I just use one form, things are fine as in this typical example: if request.method == 'POST': form = AuthorForm(request.POST,) if form.is_valid(): form.save() # do something. else: form = AuthorForm() If I want to work with multiple forms however, how do I let...

Post Multiple Values with Single Checkbox Selection

In our system, we need to pass along a pair of IDs for each checkbox selected (essentially an ordered pair). We are using a simple list of checkboxes via a CheckBoxList in ASP.NET. Is there an elegant way to do this? ...

override form name of masterpage vb.net

It seems like I can't set the id or name of the form in my masterpage. [it's always "aspnetForm"] Is there a way to override the uniqueID property of form? I tried to create a class and inherit from htmlform, but then i can't register it on my mastrepage, [unknown server tag ... ] im registering it like this <%@ Register TagPrefix="...

jquery: How to empty a form field, then bring focus/cursor to it?

I have a form that I'm submitting with AJAX. A user fills out the field (called "barcode") and hits return, and the form submits. After the form submits, they are shown a success or failure message. I want to: Fade out the message Empty the 'barcode' field Bring the cursor back to the field, ready for the next person. So far I h...