Questions tagged as 'ux'

3
answers

What is the impact of changing the default behavior of an HTML element?

Recently there was a question here in Stack Overflow about changing the default behavior of checkbox to act on the page as a radio , that is, when selecting an item, the others should be deselected, keeping the selection unique. Res...
asked by 12.06.2017 / 19:59
1
answer

What is a Triple-A or AAA level site? What do I need for my site to be considered an AAA in accessibility?

I find accessibility very important, but I believe that I have neglected this good practice a lot and have been reading Web Content Accessibility (WCAG) 2.0 . So I noticed that there is a degree of accessibility that the site can receive A...
asked by 30.10.2018 / 13:24
5
answers

Allow or not allow end spaces in passwords?

@dvd replied about validating passwords in JavaScript. In his response, he suggested removing end spaces at the time of validating the size:    It's interesting [to validate the password size] too, delete whitespace at the edges of the st...
asked by 28.01.2018 / 08:12
1
answer

What is Ergonomics?

1) What does the concept or meaning of Ergonomics? 2) What characteristics should software have to be considered ergonomic?     
asked by 27.10.2014 / 14:15
2
answers

Is it correct to adopt a design specification for an entire project?

I see many frameworks, moving to a material design visual. and using flexbox to hold the elements, among them. Bootstrap Materialize Quasar Foundation UI Material Considering that they are UI components, they should...
asked by 05.10.2017 / 14:44
2
answers

What is the impact of changing the keypress event so that it interacts a 'level up' than the key would do natively?

A simple example, no code needed: If I press CTRL + F , the browser automatically opens a search bar on the page. I made that by pressing CTRL + F it would point to an input inside the system. I want to put several other co...
asked by 27.09.2017 / 17:16
6
answers

How to visually indicate which fields are fillable?

I'm developing an application, in which there is the following form to fill out: Thegoalistoobtainthedataneededtoformthe"Code of Action" that must be created. This code is formed by concatenating the first five fields, of which only three rea...
asked by 20.02.2014 / 14:43
3
answers

Should the checkbox label be on the right or left of the control?

Generally we put the label to the left of the data entry control. Well, it has different layouts, but that's a common good. By linearity would be the case of the label continue to the left. But it is very common to see the label being plac...
asked by 07.02.2017 / 11:24
2
answers

When should I use fields that are disabled, read-only, or hidden?

If I have a form where some fields are fixed, what is the best way to present these fields to the user, from UX's point of view? A common field, disabled : <label>Foo: <select name="foo" disabled> <option value="1...
asked by 13.08.2016 / 06:34
2
answers

When to use and not use AJAX in submitting forms?

If I have a huge question form, would sending via AJAX be the best way? <form id="formulario" method="POST"> <!--vários Questionarios aqui--> </form> JavaScript: $.ajax({ type: "POST", data: $("#formulario")....
asked by 07.10.2015 / 16:07