vote up 4 vote down star

I'm using the jquery ui dialog with modal=true. In Chrome and Safari, this disables scrolling via the scroll bar and cursor keys (scrolling with the mouse wheel and page up/down still works).

This is a problem if the dialog is too tall to fit on one page - users on a laptop get frustrated.

Someone raised this three months ago on the jquery bug tracker - http://dev.jqueryui.com/ticket/4671 - it doesn't look like fixing it is a priority. :)

So does anyone

(i) have a fix for this? (ii) have a suggested workaround that would give a decent usability experience? I'm experimenting with mouseover / scrollto on bits of the form, but it's not a great solution :(

flag

80% accept rate

3 Answers

vote up 1 vote down check

I agree with the previous posters in that if the dialog is not working for you, it may be good to rethink your design. However, I can offer a suggestion.

Could you put the dialog content inside a scrollable div? That way instead of the whole page needing to scroll, just the content inside the div would need to scroll. This workaround should be pretty easy to accomplish too.

link|flag
vote up 1 vote down

I believe having too big dialogs is against your 'decent usability experience' requirement. Even if you didn't have to have a workaround due to the jQuery UI Dialog bug, I'd get rid of such big dialogs. Anyway, I do understand there may be some 'extreme' cases in which you need to adapt, so...

That said, it would certainly help if you attached some screenshot - you're asking a question about a design, but we can't see it. But I understand you might not be able/willing to show the contents of it so that's fine. These are my blind guesses; hope you find them useful:

  • Try a different layout for your dialog. If you do this, do it for all dialogs, not just the ones you're having problem with (users don't like to learn many different UIs).
  • If you can't find a different layout, try widening your dialog first. IF you have many options to choose from, you might find a good solution by dividing them in two columns.
  • Knowing you're already using jQuery UI, try using tabs. If you have too many options, a tabbed panel is usually a good solution - users are 'used' to that widget.
  • You talked about 'items' in the dialog, but we don't know what an item is. Is it possible at all to show them in a 'summarized' way such as a small list at the left and an expanded view at the right when you click on them? For example, having a list with the items titles at the left, and when you click them you get the full display on the right.

Without being able to see the design, I guess that's as far as I can go.

link|flag
If you're morbidly curious, the modal in question is at echobazaar.failbettergames.com , but it takes a login and a couple of minutes to see it. I'll take a look at your other suggestions in the medium term - thanks. – alexis.kennedy Nov 2 at 21:35
vote up 1 vote down

If your modal dialog is so large that it's taller than 1 screen height, I'd recommend displaying its content differently to begin with. What's wrong with using a separate page entirely?

I've never seen a modal dialog (key word: dialog) that's bigger than my screen and I think it would make for terrible usability if this were the case.

link|flag
Thanks for the suggestion, but - there are compelling use-case reasons for staying on the same page - the number of items in the dialog is nearly always two or three, but in around 5% of cases it's four or more, which takes it over the page limit on a 1024x768 resolution. I'd rather find a way to deal with these edge cases than rewrite the UI. :) – alexis.kennedy Oct 27 at 10:04

Your Answer

Get an OpenID
or

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