vote up 5 vote down star

We are programming a web application (not 'just' a web site, but functionality-wise a real application), and have the following discussion for the next release:

  • our UI designer wants to replace the browser's right-click context menu (showing our own menu where appropriate, or no menu at all) because he wants the web app to be more like our (existing) Windows app
  • our developers (and I) strongly object because this is bad practice, and simply something you do not do in a web application

Thus, I'm looking for "more solid" arguments - like best practice guidelines, any statements from reputable sources, coding arguments etc. - for the pros and cons of this issue, which I can hopefully use to resolve it once and for all...

flag

9 Answers

vote up 0 vote down

because he wants the web app to be more like our (existing) Windows app

I think right-click in a Windows app is a bad idea.

In a web browser it's a UI disaster because nobody will be expecting it.

link|flag
vote up 2 vote down

depending on your audience you stand a very good chance your users do not even KNOW there's a right click menu. So please don't make this the only alternative

link|flag
vote up 0 vote down

An argument I would use (in quotes for dramatic effect):

Lack of consistency & reduced functionality compared to other unhindered web interfaces will lead to a loss of user confidence - which is undesirable to say the least.

Of course, if many or most of the web application users are already familiar with or regular users of the Windows app, the UI designer could be on the right track and the consistency with the Windows app could be a winner.

That said, in my opinion it's hard to make a custom context-menu within a web page intuitive, and while some users might warm to it, I'm guessing most will probably never use it.

link|flag
vote up 0 vote down

Here's an example of a statement of best practice on the subject from a reputable author.

Jacob Nielsen

Consistency and standards: Users should not have to wonder whether different words, situations, or actions mean the same thing. Follow platform conventions.

A google or wikipedia search for HCI|UI principles|axioms|guidelines|heuristics will give you some other sources saying similar things.

The idea can have different names - sometimes it comes under the heading of "compatibility", and sometimes it's not explicitly named. Whatever the concept is called, it's usually justified in terms of the learnability of the interface and the cognitive cost it places on the user ("don't make me think"). When you think of it in terms of cognitive costs, it's possible to have a rational discussion about whether for example an extra up-front cost of learnability is justified by long-term productivity.

Consistency is a tricky concept in that it gets you into arguments about "consistency with what". There are various platform standards, and the argument in your case sets Windows platform standards against webapp platform standards. Another kind of consistency, which probably has more bearing on the usability of the application, is consistency with the expectations of the users. This can be determined by testing with real users, which is another thing that's usually listed among UI best practices.

Accessibility is another issue you might want to bring to the discussion. This can mean accommodating a whole range of users - somebody with a disability using an alternative browser, somebody who needs to up the font size because their eyes are tired, somebody browsing on a phone, somebody using an old browser. Being able to do this requires meaningful, intention-revealing markup, and standardised behaviour. You might be able to combine this with the behaviour proposed by your designer but it restricts the range of solutions available to the coder. On the other hand, you can also have a rational discussion in which you agree with your designer that accessibility isn't a big consideration, since for example it's an application for internal use.

link|flag
vote up 3 vote down

If your application is to run in an intranet, maybe the UI designer arguments are valid: as long as all of the users of the application are well known and you want to emulate some Windows application, I think it's ok to restrict the right-click or any other input, because it's just the requirements of this application, as it would be to any other app.

But if your application is to run in the internet, disabling or replacing right-click is a very bad idea, and these are only some of the arguments I reminded of:

  • First of all, changing the behavior of the user interface is aggressive and annoying -- no one wants to get used to "new controls" just to access your site, and generally people hate to leave their comfort area. I mean, I know what my right click does and I want it to do always the same thing.

  • People can understand the difference between Windows apps and web apps, so there's no need to "emulate Windows app behavior".

  • Not everyone uses Windows :-)

  • Also, this is innefective, sice there are several ways to overwrite this behavior, such as settings in Firefox or even plugins that disable specific javascript instructions, such as this one.

link|flag
You don't need a plugin to override the behavior in Firefox. It's a checkbox in the Options. – Adam Jaskiewicz Mar 17 at 15:28
@Adam you're right. Corrected my answer. – Paulo Guedes Mar 17 at 16:16
vote up 0 vote down

Replacing the browser right-click context menu for specific areas of your GUI from your web application can be quite useful. Doing this just to disable the context menu will annoy your users, who may try to find a way around it. Also, removing or replacing the browser right-click context menu from the entire area of your application will usually be annoying and can make it more difficult to debug.

Unfortunately, I cannot offer any more solid arguments, and I'm not exactly taking either side of the argument, but I thought I would share my experience both as a developer of a web application and as a web user.

link|flag
vote up 0 vote down

I think it depends on whether you perceive the context-menu as part of the browsers chrome or not. If you do (and I ascribe to this view), then it should be off target, but otherwise it is a good place for adding some usability to your application.

link|flag
vote up 15 vote down

You can't do that reliably anyway. In Firefox, go to Settings, Contents, JavaScript/Advanced (I'm guessing the captions, no English Firefox (; ) to override context menu behaviour and bang, your app doesn't work anymore. My online-banking application did this in their old version, so I couldn't do copy & paste with the mouse. I hated it, so I enabled the protection in Firefox and it worked. Kind of. Their new version doesn't do such bad things anymore.

Instead, use a little drop-down arrow where a context menu is needed, that can either be clicked or just hovered over to show the menu. JetBrains' TeamCity web app does that very well.

link|flag
+1 for good alternative solution. – troelskn Mar 17 at 15:02
+1 Yes, this is a very good alternative. – Eddie Mar 17 at 15:03
vote up 1 vote down

I personally believe you should leave browser's default behaviors alone... users are used to them, so no need to get them used to your way of doing things.

However, if you're building an intranet (instead of a public site), then I'm for tweaking as much as possible to improve usability.

link|flag

Your Answer

Get an OpenID
or

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