Static UI vs Dynamic UI - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T18:02:49Zhttp://stackoverflow.com/feeds/question/1000878http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1000878/static-ui-vs-dynamic-ui9Static UI vs Dynamic UIKamarey2009-06-16T11:26:27Z2009-06-22T10:22:40Z
<p>In some application with UI, what is better (easy, friendly, etc.) to a user:</p>
<ol>
<li>UI is static (don't depends on user state). E.g user see some button, but it's grayed out or when it's clicked, a message, that this action is not applicable right now, is shown.</li>
</ol>
<p>or</p>
<ol>
<li>UI is dynamic (depend on user state). E.g. user don't see buttons, that are not applicable right now. But after some action, buttons may appear/disappear.</li>
</ol>
<p>Sorry for my French:)</p>
http://stackoverflow.com/questions/1000878/static-ui-vs-dynamic-ui/1000891#10008911Answer by TheTXI for Static UI vs Dynamic UITheTXI2009-06-16T11:29:09Z2009-06-16T11:29:09Z<p>I have seen good examples of both, and bad examples of both. </p>
<p>Your primary goal should be in making sure that your UI design (whatever route you choose) makes the entire process logically sensible to your intended audience.</p>
http://stackoverflow.com/questions/1000878/static-ui-vs-dynamic-ui/1000893#100089311Answer by Mitch Wheat for Static UI vs Dynamic UIMitch Wheat2009-06-16T11:29:20Z2009-06-16T11:29:20Z<p>I always recommended a UI that is as unchanging as possible:</p>
<ul>
<li>Don't surprise users</li>
</ul>
http://stackoverflow.com/questions/1000878/static-ui-vs-dynamic-ui/1000897#10008971Answer by red777 for Static UI vs Dynamic UIred7772009-06-16T11:30:01Z2009-06-16T11:30:01Z<p>dynamic is better if you don't want to frustrate your users</p>
http://stackoverflow.com/questions/1000878/static-ui-vs-dynamic-ui/1000901#10009012Answer by cletus for Static UI vs Dynamic UIcletus2009-06-16T11:31:23Z2009-06-16T11:31:23Z<p>I nearly always keep the UI static and simply disable (grey out) components that aren't applicable at this moment in time. It can be jarring to the user and confusing if components move around as you show/hiden them as the state changes.</p>
http://stackoverflow.com/questions/1000878/static-ui-vs-dynamic-ui/1000902#10009020Answer by Colin Desmond for Static UI vs Dynamic UIColin Desmond2009-06-16T11:31:34Z2009-06-16T11:31:34Z<p>I'd suggest prototyping both and asking your users (or a representative sample) which they prefer and why.</p>
http://stackoverflow.com/questions/1000878/static-ui-vs-dynamic-ui/1000904#100090424Answer by Dror for Static UI vs Dynamic UIDror2009-06-16T11:32:04Z2009-06-16T11:32:04Z<p>In my opinion, a static GUI with disabled controls is preferable.<br />
When some options are not visible, the user will not know they exist. </p>
http://stackoverflow.com/questions/1000878/static-ui-vs-dynamic-ui/1000907#10009070Answer by Johannes Rössel for Static UI vs Dynamic UIJohannes Rössel2009-06-16T11:32:27Z2009-06-17T15:39:40Z<p>A modal UI introduces mode errors. Always.</p>
<p>You currently seem to want to choose between two different ways of presenting a modal UI. From those I'd say the first one is superior (unless you really have many possible commands, see the Office 2007 UI for a good example how to handle this, but it's not common to have that many).</p>
<p>If you have the space and you haven't too many controls then I'd really go with disabled controls as it shows th user what is possible. Furthermore you might want to make it really clear which mode the UI is in (not just from the buttons that are enabled). I've seen user interfaces where you had disabled buttons but the user couldn't figure out what he has to do to enable them.</p>
<p>In any event be sure to do usability testing to find out what way is less error-prone on behalf of your users.</p>
http://stackoverflow.com/questions/1000878/static-ui-vs-dynamic-ui/1000917#10009170Answer by ChrisF for Static UI vs Dynamic UIChrisF2009-06-16T11:34:16Z2009-06-16T11:34:16Z<p>Just to re-iterate what Mitch Wheat said really.</p>
<p>If you make buttons disappear and reappear depending on user actions then there is the danger that the user might think that they've done something that's broken the application.</p>
<p>You are also hiding actions from the user, so it will be harder for them to discover what it can do.</p>
<p>Disabling buttons is a well known paradigm and users will be able to see everything that your application can do and will experiment to see how to enable them.</p>
http://stackoverflow.com/questions/1000878/static-ui-vs-dynamic-ui/1000920#10009200Answer by Tarscher for Static UI vs Dynamic UITarscher2009-06-16T11:35:01Z2009-06-16T11:35:01Z<p>I think it depends on what users you want to hide design for but in general I would opt for the static version. Don't forget that a user interface doesn't only provide functionality but also information. If you grey out a button you inform the user about it's state (by what he can do and what not) more clearly than removing buttons.</p>
<p>The remove button aproach can work for users that in general have good understanding of the system like admins. But I think you should use this with causion</p>
http://stackoverflow.com/questions/1000878/static-ui-vs-dynamic-ui/1000921#10009214Answer by James for Static UI vs Dynamic UIJames2009-06-16T11:35:03Z2009-06-16T11:41:39Z<p>I don't think there is a right or wrong answer to this question, I think it is just a matter of opinion/preference.</p>
<p>Personally, I would expose all functionality to the user and just grey it out when it is not accessible. However, there are some situations where I would consider removing the buttons from view e.g.</p>
<ul>
<li> Administrative options (probably don't want to expose this to users with lower priveledges)
<li> RunOnce functionality (activating product/registering)
</ul>
<p>Reasons for this is there is no point in exposing functionality when the user is not meant to access them or if the functionality is just going to sit there greyed out forever...</p>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/1000878/static-ui-vs-dynamic-ui/1000923#10009230Answer by Esko Luontola for Static UI vs Dynamic UIEsko Luontola2009-06-16T11:35:43Z2009-06-16T11:35:43Z<p>Grayed out buttons are better, because then the user will know that under some situation such a function is available (and depending on the context the user might be able to guess when it is enabled), and the visual cue of being grayed out will signal to the user that the button can not be clicked, so the user will not try to click it (the problem with a message after clicking is that it comes too late - the user already made a mistake).</p>
http://stackoverflow.com/questions/1000878/static-ui-vs-dynamic-ui/1000928#100092810Answer by Praveen Angyan for Static UI vs Dynamic UIPraveen Angyan2009-06-16T11:36:46Z2009-06-16T11:36:46Z<p>Both of those styles have their uses. Remember that you should always use the right tool for the job and that there are (almost) no absolutes in creating software.</p>
<p>A static UI with grayed out elements is preferable in most cases. By providing a simple non-obtrusive message (don't show a modal message box for instance) when the user clicks or tries to interact with the grayed out elements, you can train your users.</p>
<p>What really happens in most cases is that there is a grayed out menu and your users are left wondering what they need to fix to be able to click on that element. This is bad UI design.</p>
<p>A dynamic UI is also relevant if you have an extensive administration section that the logged in user should NEVER be able to use. By hiding the administration section, you avoid confusion and interface "overload" for users who will NEVER interact with the hidden interface elements.</p>
<p>A dynamic UI is required in applications like Adobe Photoshop. There are literally thousands of commands and menu items possible in Adobe Photoshop. The only way that any user could comprehend the interface is by hiding and showing user interface elements depending on the state of the application. </p>
http://stackoverflow.com/questions/1000878/static-ui-vs-dynamic-ui/1000931#10009310Answer by Kirill V. Lyadvinsky for Static UI vs Dynamic UIKirill V. Lyadvinsky2009-06-16T11:37:15Z2009-06-16T11:37:15Z<p>Whatever you choose, use constant positions of the buttons. Users often are not read text on the buttons.</p>
http://stackoverflow.com/questions/1000878/static-ui-vs-dynamic-ui/1000933#10009330Answer by merkuro for Static UI vs Dynamic UImerkuro2009-06-16T11:37:34Z2009-06-16T11:37:34Z<p>Depends. But a clear and compact GUI is a nice thing to have. Why bother with 10 fields/controls you cannot change or use at all. For example on stackoverflow you have a reduced UI if you only have a low reputation, because it doesn't matter at all to the user, that one day he might be able to use them. Another thing is that controls (with borders) usual take more space than just text. If you have information, that currently cannot be changed, I would present them in a very compact text field/label. Depending on the information it even could be placed outside or far way from the form. </p>
http://stackoverflow.com/questions/1000878/static-ui-vs-dynamic-ui/1000949#10009490Answer by Dan F for Static UI vs Dynamic UIDan F2009-06-16T11:40:11Z2009-06-16T11:40:11Z<p>According to Joel - <a href="http://www.joelonsoftware.com/items/2008/07/01.html" rel="nofollow">neither</a> :-)</p>
http://stackoverflow.com/questions/1000878/static-ui-vs-dynamic-ui/1000950#10009500Answer by Ilya Boyandin for Static UI vs Dynamic UIIlya Boyandin2009-06-16T11:40:28Z2009-06-16T11:40:28Z<p>Both can make sense, as long as you use paradigms the users are familiar with.</p>
<p>The tab control is basically a dynamic UI that changes depending on the state.</p>
http://stackoverflow.com/questions/1000878/static-ui-vs-dynamic-ui/1000977#10009771Answer by itsmatt for Static UI vs Dynamic UIitsmatt2009-06-16T11:45:15Z2009-06-16T11:45:15Z<p>Well, that's the idea behind the latest MS Office, right? Controls that are around based on context. That, versus older versions with lots of grayed-out menus and toolbar buttons.</p>
<p>I worked for a number of years on control systems and in those environments, we mimicked the hardware controls (toggles, dials, buttons) that were, of course, static though not always usable. This was a customer requirement and their position was that the operator using the system expected button X to always in the same place. But from the designer and developer standpoint, I was frustrated by the cluttered UI and didn't like it when 95% of the buttons on a screen were grayed out.</p>
<p>I think that it will depend on your audience and the domain and customer requirements. In my shop, I make things dynamic and offer controls that make sense based on context. Typically, we don't show grayed out buttons or menu options that aren't available in the current context. Once the users recognize that they follow certain workflows and those involve particular UI elements when appropriate, they have no problems with (and probably prefer) a dynamic UI.</p>
<p>Less is better. </p>
http://stackoverflow.com/questions/1000878/static-ui-vs-dynamic-ui/1000991#10009914Answer by Tom Carter for Static UI vs Dynamic UITom Carter2009-06-16T11:48:08Z2009-06-16T11:48:08Z<ul>
<li><p>If an action is not available
because the profile of the user
forbids its use do not show it at
all</p></li>
<li><p>If an action is not available only
because another action must first be
completed either : </p>
<ul>
<li><p>Grey it out or</p></li>
<li><p>Leave it activated but on execution display a
message with a clear explanation of
why it cannot be executed</p></li>
</ul></li>
</ul>
http://stackoverflow.com/questions/1000878/static-ui-vs-dynamic-ui/1001026#10010261Answer by anddoutoi for Static UI vs Dynamic UIanddoutoi2009-06-16T11:56:17Z2009-06-16T11:56:17Z<p>Why not do both and let the <a href="http://en.wikipedia.org/wiki/A/B%5Ftesting" rel="nofollow">A/B testing</a> tell you what your users prefer?</p>
http://stackoverflow.com/questions/1000878/static-ui-vs-dynamic-ui/1001087#10010873Answer by Michael Zuschlag for Static UI vs Dynamic UIMichael Zuschlag2009-06-16T12:13:01Z2009-06-16T12:13:01Z<p>Make the action unavailable (by hiding, disabling, or using an error message) only if the action is logically impossible for the current state of the task, or to encode organizational rules on the actions certain users are permitted to do (e.g., privileges/permissions). Whenever possible make the user actions always available:</p>
<ul>
<li><p>Use status indicators to discourage unnecessary actions, but allow them anyway.</p></li>
<li><p>Use verification and undo to prevent permanent damage from unadvisable actions, rather than disallowing the actions. Users may need to do something some day that is usually “unadvisable.”</p></li>
<li><p>Alter app design to make actions always possible in some way. For example, if a field needs to be filled out before an action can be done, prompt the user for the field, rather than disallowing the action.</p></li>
<li><p>Control user behavior through organizational policy, not software. Policies are easier to change when the business rules change or when there’s an exception or emergency.</p></li>
</ul>
<p>Use disabling when: </p>
<ul>
<li><p>The user can do something in the app to make the action available. </p></li>
<li><p>Availability is achieved through controls in the same window or its parent. </p></li>
<li><p>The user can easily figure out which control does this. </p></li>
</ul>
<p>Use toggling controls rather than disabling for turning processes on and off. </p>
<p>Use read-only text boxes rather than disabled text boxes for data that is applicable for the current state unchangeable by the user. </p>
<p>Use hiding (“dynamic UI”):</p>
<ul>
<li><p>For actions that are never available to the user in his or her current job. </p></li>
<li><p>For indicating different virtual places or things (e.g,. pages on a tab control, where each “tab” is a different place or thing). Make sure visual design is compatible with this: if you are representing different places, then make it look like different places (e.g., the way tabs do)</p></li>
<li><p>For <em>swapping</em> large numbers of controls with alternative controls. </p></li>
</ul>
<p>Use layout, symbols, and text to explain unavailability, especially disabling. For example, mark your required fields; use tooltips to say why a button is disabled.</p>
<p>Use error messages rather than disabling or hiding when there no other means to indicate graphically or textually how to make an action available. </p>
<p>Further details and rationale at <a href="http://www.zuschlogin.com/?p=40" rel="nofollow">http://www.zuschlogin.com/?p=40</a>. </p>
http://stackoverflow.com/questions/1000878/static-ui-vs-dynamic-ui/1001105#10011051Answer by Rafael Romão for Static UI vs Dynamic UIRafael Romão2009-06-16T12:17:17Z2009-06-16T12:17:17Z<p>I think it's better to focus on the user productivity and on the business the software is implementing.</p>
<p>To show operations that does not make sense for a specific user or in a specific moment will not help, disabled or not.</p>
<p>For example, if you have a software that is used in several departments of an organization, each user/department will only be interested in the part of the software that implements the part of the business he is involved to. Anything else is useless for him and only will make the software experience worst. The same applies for a screen that is usefull for a user but shows useless options.</p>
http://stackoverflow.com/questions/1000878/static-ui-vs-dynamic-ui/1001118#10011180Answer by Ricardo Afonso for Static UI vs Dynamic UIRicardo Afonso2009-06-16T12:18:43Z2009-06-16T12:18:43Z<p>Consistency is probably the most important thing when designing an UI. If buttons pop in and out, they are seen as a visual stimulus, and the user will "spend" attention looking at them.</p>
<p>A subtle, but clearly disabled button (not disappearing) is my preffered choice for designing UI....</p>
<p>.. So I guess that's option 1 :)</p>
http://stackoverflow.com/questions/1000878/static-ui-vs-dynamic-ui/1001210#10012100Answer by finnw for Static UI vs Dynamic UIfinnw2009-06-16T12:35:46Z2009-06-16T12:35:46Z<p>A combination of the two.</p>
<p>If a function is not applicable in the current state, disable the button <em>but</em> also place an icon next to the button and associate a tooltip with the icon. The tooltip should explain why the user can't use the button right now.</p>
<p>Attaching the tooltip directly to the button doesn't work so well. Most users won't even hover over the button as they won't expect it to do anything.</p>
<p>And avoid exclamation mark icons. They suggest the user has entered an invalid value (unless they actually have.)</p>
<p>I'd like to say I always do this, but unfortunately it does take significantly more coding time, and clients aren't always willing to pay for that.</p>
http://stackoverflow.com/questions/1000878/static-ui-vs-dynamic-ui/1007914#10079140Answer by ilitirit for Static UI vs Dynamic UIilitirit2009-06-17T15:45:17Z2009-06-17T15:45:17Z<p>I like to keep all advanced options hidden under a "More >>"/"Less <<" button, or "Advanced Mode" checkbox, depending on the context and application.</p>
<p>Once clicked/checked, the window expands to reveal more options.</p>
<p>In terms of action availability though (like a Wizard featuring Next/Previous buttons) I always show them, and enable/disable them according to what functionality is possible.</p>