36
votes
6answers
10k views
How to handle checkboxes in ASP.NET MVC forms?
This seems a bit bizarre to me, but as far as I can tell, this is how you do it.
I have a collection of objects, and I want users to select one or more of them. This says to me "form with …
15
votes
11answers
26k views
Check if option is selected with jQuery, if not select a default
Using jQuery, how do you check if there is an option selected in a select menu, and if not, assign one of the options as selected.
(The select is generated with a maze of PHP functions in an app I …
10
votes
9answers
518 views
CSS Grid System for Forms (Multi-Column)
For future reference here is the final result with pixel perfect precision:
The CSS code:
._25 {
width: 21%;
display: inline;
float: left;
margin-left: 2%;
margin-right: 2%;
}
…
9
votes
9answers
348 views
Clear form button in HTML…do we really need this?
I usually add the clear form button to HTML forms by default, but tonight I had what alcholics call a "moment of clarity". Why the hell do we add this? In all my years of using the internet I have …
9
votes
12answers
900 views
Java, GUI builder or hand coding?
My company software has a lot of forms, till now we wrote the code by hand (MVC way).
We consider start using GUI builder.
There are few problems with using a Builder.
Parts of the code are not
…
9
votes
2answers
2k views
Retrieving HTTP status code from loaded iframe with Javascript
I used the jQuery Form plugin for asynchronous form submission. For forms that contain files, it copies the form to a hidden iframe, submits it, and copies back the iframe's contents. The problem is …
8
votes
8answers
193 views
What attacks can be directed on a registration page
I have a website registration page, and I'm trying to compile a list of what I need to do to protect it. If you know of an attack, please name it, and briefly describe it preferably with a brief …
8
votes
2answers
211 views
Why not always use enctype=”multipart/form-data”?
When building HTML forms why do we not always use enctype="multipart/form-data"?
8
votes
6answers
4k views
Jquery toggle event is messing with checkbox value
Hi all,
I'm using Jquery's toggle event to do some stuff when a user clicks a checkbox, like this:
$('input#myId').toggle(
function(){
//do stuff
},
function(){
//do other stuff
}
);
The problem …
7
votes
6answers
266 views
Back Button Handle A Dynamic Form
I have a form with an array of text fields. The user (through javascript) can add an arbitrary number of text fields to the form. After submitting the form and pressing the back button the form …
7
votes
4answers
500 views
Form field names used by personal data auto-fill in browsers (Safari, Opera)
I'm looking for complete list of form field names (<input name="…">) that are recognized by auto-fill functions in major browsers.
Here are some I've found to work in Safari using …
7
votes
14answers
1k views
What’s the best UI for entering date of birth?
What is the best method for date of birth selector?
3 text inputs (month / day / year) or one mask input. User MUST use keyboard
3 select boxes. User can use keyboard or mouse.
One nice datepicker.
…
7
votes
8answers
714 views
Using “Remember Me” functionality for authentication in .NET 2.0
My client wants me to enable a "Remember Me" checkbox when the user logs in. I am encrypting and storing both the username and password in a cookie.
However, you cannot write to a textbox when it's …
6
votes
1answer
43 views
Drilldown using unbound comboboxes with Access “Continuous Form”
There has got to be a simple(r) way to do this.
I have a situation where I am listing parts using continuous forms. The parts listing has things like the part type, manufacturer, part number and the …
6
votes
6answers
422 views
Can I disallow web browser autocomplete?
You know how browsers autocomplete text boxes? Apparently this confuses users. They see it as a short list with only limited options.
Does anyone know how to disable autocomplete?
