vote up 6 vote down star
1

In my particular situation, I have a comment form than cannot be used until the user has logged in and joined a specific topic. Then, they can comment on that topic.

In your opinion, should I hide the comment form completely, or disable it and prompt the user to complete the necessary requirements.

flag

Since the obvious answer is "it depends" then in what situations would you choose one approach over the other? – asoules Oct 22 at 16:22
More answers to nearly the same question at: stackoverflow.com/questions/371921/… stackoverflow.com/questions/1000878/… – Michael Zuschlag Oct 22 at 21:05
...Or if you want to go back to pre-StackOverflow times: discuss.joelonsoftware.com/default.asp?design.4.5… – Michael Zuschlag Oct 22 at 21:08

6 Answers

vote up 15 vote down check

Disabling them saves the user from effortlessly looking for functionality she knew to exist before. So in general, hiding something completely from view just generates frustration. Remember the dynamically populated menus in Office 2000 to 2003? Then you know what I mean (cf. Jensen Harris' blog posts on that topic).

I suggest you should disable them and make it clear in what states they are available and how to achieve that.

In some cases, however, such as the application we are developing right now, functionality being there or not depends more on the user's permissions than on the current state of the program. In such cases it can be helpful to just hide things that shouldn't be accessible since users never get to the point where they could use the controls. Simply because they're lacking privileges. See for example Stack Overflow's moderation tools which are accessible once you get above 10k rep but are never shown before, not even as disabled.

link|flag
those are excellent examples, thanks for your input! – asoules Oct 22 at 16:32
I've had many times I've search for an input field that I knew I had seen before but wasn't on the screen. I'd think that maybe I was on the wrong screen and search all over. Then eventually I discovered that, no, I was on the right screen, but the input was hidden because some other option made it inapplicable. I think it's much better to disable it so that the user can clearly see that this is the right screen, that input just isn't available right now. Better still if you give them a clear idea why not. – Jay Oct 22 at 16:41
I'd pretty much limit hiding an input to cases where you don't want the user to know. Like the "enter backdoor password" field or the "spy on user through her monitor" option that are only available to advanced users. – Jay Oct 22 at 16:42
1  
Even making it clear when an item is available (for example via a popup) is not optimal, and can also frustrate the user. – Simon Oct 22 at 17:00
Well, the canonically optimal way to deal with this is not to allow modes in the UI. Jef Raskin has a lengthy chapter on this very topic in his book The Humane Interface. His stance (and the one of many other UX professionals) is that modes in a system always lead to human error. The only real solution is to eliminate them. – Johannes Rössel Oct 22 at 17:05
vote up 6 vote down

If you don't want the user to know there is a comment form you should hide it.

If you want the user to know there's a comment form, but it is not (yet) available to them, you should disable it (gray it out).

There are good reasons why you might want to hide instead of gray. If you are security-trimming the interface, for example.

link|flag
vote up 3 vote down

Gray out.

You want users to be aware of what options are available. If they're hidden a user may never know that additional setting exists.

EDIT:

I guess what I'm trying to say is if you really should hide an option you'll know. IE spacing issues, security, whatnot.

link|flag
Unless there is a reason to hide it (security, other). – Robert Harvey Oct 22 at 16:25
@Robert: Edited, better? – Spencer Ruport Oct 22 at 16:27
Fine with me. Just sayin'. – Robert Harvey Oct 22 at 16:30
vote up 1 vote down

No matter what you do to visually imply something is disabled, old/inexperienced/hasty users will lose time trying to comprehend that the form looks like a form but it isn't.

I would go with a clear message instead.

link|flag
vote up 0 vote down

gray them out. if they click on them provide a message stating why they are unavailable.

link|flag
Tooltip is better. In general users are not expecting grayed out items to be clickable so it's better that clicking doesn't do anything. – Khilon Oct 25 at 1:01
good point. the main idea is to let them know why they aren't available somehow. – ctrlShiftBryan Oct 26 at 13:05
vote up 0 vote down

Hide the form and provide a message such as:

"Comment on this article by signing in or registering" which links to the login and registration form, once they have registered they should be directed back to the comment form so they can leave a comment.

Leaving the form visible but inactive would make the user think they have to click somewhere special to activate it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.