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
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
3answers
58 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
52 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 …
5
votes
8answers
987 views
How to use jquery form plugin with asp.net ?
in asp.net 2.0 (not mvc), the form's action is to itself. how can I use the forms plugin to send information to server?
I need to send data from the form (let's say name, email, comment) and to …
0
votes
2answers
48 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
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 = …
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
78 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 …
1
vote
0answers
15 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
2answers
33 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
5answers
426 views
Add class to Django label_tag() output
I need some way to add a class attribute to the output of the label_tag() method for a forms field.
I see that there is the ability to pass in an attrs dictionary and I have tested it in the shell …
0
votes
8answers
2k views
Is there a better jQuery solution to this.form.submit(); ?
I want to trigger the submit event of the form the current element is in. A method I know works sometimes is:
this.form.submit();
I'm wondering if there is a better solution, possibly using jQuery, …
0
votes
2answers
47 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
22 views
How to use thickbox (or modal window) to update a select input box
I have a form with a dynamic select box (pulled from a database). I want to give users the ability to add to that select box without leaving the form. I would prefer a thickbox (or modal window) to …
