0
votes
4answers
49 views
C# WaitCursor while form loads
Hello all,
I'm having a form that takes a few seconds to finally display. This form is called through:
using (ResultsForm frm = new ResultsForm())
{
this.Visible = false;
frm.ShowDialog();
…
0
votes
1answer
16 views
form with no action and where enter does not reload page.
I am looking for the neatest way to create an html form which does not have a submit button. That itself is easy enough, but I also need to stop the form from reloading itself when submission-like …
0
votes
1answer
22 views
Jquery dynamic rows with form
I am trying to change 'inputs' in this demo to 'selects'. The demo works fine, which is at:
http://devblog.jasonhuck.com/assets/infiniteformrows.html
The problem with modified is is everytime you …
0
votes
5answers
58 views
Insert multiple rows into mysql with php using foreach arrays
Im stuck, been trying to figure this out for 2 hours now. I have figured out the foreach loop, but cant figure out how to insert the data now.
here is my php, what am I doing wrong?
$query = …
1
vote
1answer
17 views
why the jmeter not work ?
I use jmeter to record the requests and then perform a performance test.
after i records all the requests with proxy server.
and these requests contain post form.
after that I run the test cases, but …
1
vote
7answers
56 views
Jquery to target same id as class name of clicked element?
I'm trying to use jquery to enable a form button only after a radio button has been selected.
It's a t-shirt shop where the user is required to choose a size before the 'add to cart' button becomes …
1
vote
1answer
22 views
Can’t get JSF input field value on JAVA backend
Hello.
I have following UI part on JSF - it's simple search form with input field and submit:
<h:form>
<h:commandButton action="#{operation.found}" value="#{msg.search}" />
…
1
vote
4answers
78 views
Is it redundant to use the “name” attribute for input fields in modern web development?
Hello,
I've noticed a lot of websites with form(s) containing input fields whose "name" attribute is specified even if it isn't used for styling or scripting purpose!
Moreover, according to the …
0
votes
1answer
19 views
MDI Child Form Start Position Problem
Hi:
I am having this strange problem with the start position of the MDI child Form.
Here is my code for the start position, I wanted it to be the middle left of
the MDI Parent Form.
//show …
0
votes
3answers
29 views
Post the checkboxes that are unchecked
I've got a load of checkboxes that are by default checked. My users will probably uncheck a few of the checkboxes (if any) and leave the rest of them checked. Is there any way to get the checkboxes …
0
votes
1answer
17 views
chinese search form in flash
hey!!
i'm working on a menu with a search field, all this menu is done in flash, on the english side works perfect, you write "dah" and it searches for "dah" but on chinese, you write "餅" it posts …
1
vote
2answers
83 views
Delphi Form Painting Black Flash When Restoring
When I minimize and restore my Delphi application, the window contents flash a horrible black before (re)painting on Vista/Win7. This can also be seen with the Delphi 2007 IDE - the Object Inspector, …
0
votes
1answer
16 views
IE prompt about unsaved form data
I'm having an unexpected "annoying" popup in IE7 (and possibly other versions). As expected IE prompts you about unsaved form data when closing the window which is fine. But I have a form inside a div …
0
votes
3answers
34 views
Cross-site tomcat form post not working
Hi,
For a customer, I need to write a Servlet which can print values in a form post. The form is hosted on another server and looks somewhat like this:
<form action="http://myserver/myServlet" …
0
votes
3answers
11 views
Is there a way to set the default values for sfWidgetFormFilterDate widget?
I have an auto generated BaseBlahBlahBlahFilter.class file in my /lib/filter/base/ folder. It contain the following line for 'data' type field :
'date' => new …
