0
votes
3answers
46 views
submitting form from textarea
how can i submit a form on enter pressed while i amm typing in textarea........if i hit enter it only breaks a line but not submits the form.
0
votes
2answers
14 views
How to create a copy/link of a user element in a C# forms tab control?
I have a .NET forms application using a tab control with several tabs. There are a few elements (a button and a few text boxes) that need to be displayed on every tab. Rather than create 5 seperate …
0
votes
2answers
47 views
Getting the label of “this” in jQuery
The following is my code for changing the color of the label of the input field in focus:
$(document).ready(function() {
var name = $(this).attr("name");
$(".comm-input").focus(function() {
…
0
votes
3answers
53 views
what exactly happens with the from action script in php.
<form action="somesite.com" name="somename">
<input type="text" name="data" value="">
</form>
If I try to execute this code in my local system, the value with the name 'data' …
1
vote
3answers
47 views
What is a good tutorial or book to learn credit card processing using PHP?
I am looking for a good tutorial or book that explains how to process a customer's credit card from a form on your site. I read something about using curl, but it wasn't a complete tutorial. I am …
3
votes
3answers
37 views
Preserve something I drew on a Form?
So yeah,
Basically I drew something on a form using Graphics. Now if I move a window over the form the stuff I drew gets erased.
Is there a way to preserve the drawing?
(I'm using Windows.Forms)
0
votes
2answers
77 views
MVC pattern and $_POST variables
Hi,I am building a php/mysql based framework and cms , and I got stucked into passing variables using post method , from a form located in one controller, to another controller. More exactly , i built …
0
votes
2answers
46 views
How to requery a subform from another form?
I've struggling with this problem on my own, then with some help, then search about it; but I haven't had any luck. So I decided to ask.
I have two forms in Access 2007 lets call them MainForm and …
0
votes
2answers
32 views
jQuery: Create and submit a form with file upload !
Hey there,
I have a simple field somewhere in my document.
Now I want to CREATE a form with jQuery, add this input field to it and submit it via Javascript.
Something like that:
var newform = $( …
1
vote
0answers
14 views
Dynamic Forms in Spring Web Flow
Hi, I am trying to make a dynamic form using Spring forms. Basically in my jsp page i have button to Add input text boxes, I can add as many as i want. Dynamically am adding these text boxes using …
0
votes
1answer
21 views
Turbogears, mako form displaying as plain text
Hi I'm generating a sprox form with Turbogears 2.1 and trying to display it in a mako template. Here is my code:
To define the form:
class NewUserForm(AddRecordForm):
model = User
newuserform = …
0
votes
2answers
46 views
How to get logged-in user info in Django’s forms.py
I have created a Profile model including the Gender info. There is also models called Dorm and Registration (not used for user registration) like this:
class Registration(models.Model):
user = …
0
votes
5answers
46 views
jQuery matching pattern
I'm trying to validate my inputs with jQuery before a form is sent.
This is what my input fields look like when there is no value inserted in the database:
<input
class="field"
…
0
votes
2answers
33 views
jQuery.forms.js works using click() but not submit() (using selenium)
My form has an ajax handler provided by jquery.forms.js.
form.ajaxForm({
dataType: 'json',
clearForm: true,
success: function (data)
{
form.replaceWith(data);
}
});
I'm testing this …
1
vote
0answers
31 views
c# .net - authentication expiring prematurely
I am setting up the authentication cookie in c# as persistent and with an end date of one year from now, but it expires not too long after being set. The code is below...
DateTime endDate = new …
