active questions tagged ui - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T00:24:49Zhttp://stackoverflow.com/feeds/tag/uihttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1943495/how-to-deal-with-currently-unavailable-options-locking-vs-hiding-vs-error-mess0How to deal with currently unavailable options? Locking vs. Hiding vs. Error messagesMichael Borgwardt2009-12-22T00:24:30Z2009-12-22T00:24:30Z
<p>What is the best way to deal with input elements that are currently not available, or locked to a default value, e.g. a "state" field that is only relevant to some countries, a button for functionality that the current user is not authorized to use, or a dropdown menu entry that is only relevant when the user has selected something?</p>
<p>There are 3 ways I've seen to deal with this, and all of them seem unsatisfying to me:</p>
<ul>
<li><strong>Locking the elements</strong> - can confuse and annoy users because it conveys no information about <em>why</em> they're locked. This question was actually prompted by me wanting to install east asian font support on Windows XP, finding the relevant checkbox in the control panel locked, and wondering about it for days before realizing that I was on a non-admin account.</li>
<li><strong>Hiding the elements</strong> - Even more confusing and annoying when users see screenshots in a tutorial that differs from what they see - or are told by a helpdesk guy to click on a button that doesn't exist for them.</li>
<li><strong>Showing an error message</strong> - best chance of conveying useful information, but might also be quite annoying when you have no visual cue about what you can and can't do.</li>
</ul>
<p>So are there any good alternatives (ideally with real life examples where they're used)? Rules of thumb when to use what? Strong arguments why to use locking anyway? It does seem to be the most commonly used, but I suspect that may only be so because everyone's copying it without thought.</p>
http://stackoverflow.com/questions/1935551/inspirations-for-software-ui3Inspirations for Software UIqxxx2009-12-20T11:21:43Z2009-12-21T21:26:17Z
<p>Do you know any source for nice looking software designs? (non Web).</p>
http://stackoverflow.com/questions/1941575/sharepoint-ajax-c-web-part-visual-layout-of-updatepanel-controls0SharePoint AJAX C# web part - visual layout of UpdatePanel controlsGeo Ego2009-12-21T17:48:50Z2009-12-21T18:05:34Z
<p>I'm creating a SharePoint web part in C# that is using an UpdatePanel for some AJAX magic. Everything is working fine, but I'd like to know how to lay out my controls visually (without using SharePoint Designer). I just have two dropdownlists, some labels, a button, and a textbox. I am creating them within the overridden CreateChildControls. Thanks!</p>
http://stackoverflow.com/questions/1939247/resources-on-technical-gui-design1Resources on technical GUI designThomas Lötzer2009-12-21T10:07:42Z2009-12-21T10:39:38Z
<p>Hi,</p>
<p>I am looking for recommendations on resources (both books and websites) on designing GUI applications. By designing I mean the technical design (when and how to use data binding, when should MVC/MVP be used, what functionality should go into the model, the view, the controller/presenter, how can different parts of the UI best be kept in sync ...), not the screen design of which button goes where or how the interaction with the user should take place.</p>
<p>Thanks,
Thomas</p>
http://stackoverflow.com/questions/1938516/how-to-use-commanditem-of-j2me-polish0How to use CommandItem of J2Me PolishAJPRA232009-12-21T06:25:43Z2009-12-21T06:25:43Z
<p>There is an item in J2me Polish, called , de.enough.polish.ui.CommandItem, How and where can i use this item.</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1934101/ui-and-application-relationship0UI and Application relationship Eyalk2009-12-19T20:51:06Z2009-12-19T23:02:46Z
<p>Hi All,</p>
<p>I've read a lot of articles about the UI ,buisness logic ,WCF ,IoC, but still, one thing is missing from my mind.
I build a winforms application and a console app. the Console App is the brain.
Now, in all the client-server architecture the client "know" the server , send him request and get the answer. My qestion is as follow:</p>
<p>1) How can the console application display a message to the user if he doens't know the existence of the UI? Should the UI check and pool for the messages every x msec? is it a good approach?</p>
<p>2) what in the case that the UI forms should display a ticker price ,e.g stock price which changes all the time ? should it request the ticker price from the console app every 200msec? or register a callback function in the console application so the console application can call it? However, doesn't it make the UI into a server now?</p>
<p>3) What happen in case that I want to add a terminal capbilities to my application (e.g telnet cli ), how should I design it ? the telnet server as a client and my console application as the server? is there a design that can help me to achieve that? CAB? I asked a lot of people and it seem that nobody is using it... is that so?</p>
<p>Thanks,
Eyal</p>
http://stackoverflow.com/questions/1928991/minimum-sensible-button-size-on-iphone1Minimum sensible button size on iPhoneSeva Alekseyev2009-12-18T15:51:10Z2009-12-19T20:21:08Z
<p>Hi all,</p>
<p>I'm designing an iPhone app that features a rather large set of onscreen rounded rect buttons. Given finger-based touchscreen UI, what do you think would be the smallest sensible button size? I need to fit as many of them as I can in the viewport without compromosing the usability too much. Maybe there's an Apple-recommended minimum size? Right now it's 33x33, and it looked OK on a simulator, but I was playing with the app on a real phone last night, and it was awkward - the buttons felt too small.</p>
http://stackoverflow.com/questions/1931295/android-emulator-ui-buttons-from-command-line1android emulator ui buttons from command lineDerrick2009-12-18T23:33:12Z2009-12-19T03:23:40Z
<p>I'd like to be able to access the emulator's ui buttons from the commandline or from a test script (e.g. the Back, Menu, or Home buttons.) Can this be done through the adb shell? Or does anyone know of a way to do this directly with OS X?</p>
http://stackoverflow.com/questions/1911219/jquery-ui-dialog-box-and-ajax-beginform0JQuery UI Dialog Box and Ajax.BeginFormRon Steckly2009-12-15T23:25:54Z2009-12-18T23:36:41Z
<p>Hi,</p>
<p>I have a JQuery UI dialog box. The app allows people to create lists and this dialog lets them specify the listname. Here it is:</p>
<p><%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %></p>
<pre><code> <%= Html.ValidationSummary("Create was unsuccessful. Please correct the errors and try again.") %>
<% using (Ajax.BeginForm("CreateList", new AjaxOptions {UpdateTargetId="mylists"})) %>
<p>
<label for="listname">List Name:</label>
<%= Html.TextBox("listname") %>
<%= Html.ValidationMessage("listname", "*") %>
</p>
<%=Ajax.ActionLink("Create", "CreateList", new AjaxOptions{}) %>
<% } %>
</code></pre>
<p>I tried making this a regular HTML form and calling the method from JQuery. I'm not sure if I was doing something wrong but the object that was sent back to the controller was null. I'm assuming this is because Jquery doesn't serialize and that I have to specify properties such as name="some form field", etc. in the post action. Is this a correct assumption?</p>
<p>In any event, given the difficulties with starting a post action from JQuery, I tried using the Ajax.ActionLink and Ajax.BeginForm.</p>
<p>When I click for the dialog to show up, nothing comes up now. I'm wondering if this is a timing issue? On $(document).ready(), I am initializing a dialog before loading the partial view:</p>
<pre><code>$("#listdiv").dialog({
autoOpen: false,
buttons: {
Create: function() {
},
Cancel: function() {
$(this).dialog('close');
}
}
});
</code></pre>
<p>I then add an event handler for a click event:</p>
<pre><code>$("#newlist").click(function() {
$("#listdiv").load("Record/CreateList");
$("#listdiv").dialog("open");
});
</code></pre>
<p>Not sure exactly why a partial view doesn't show up in this case.</p>
http://stackoverflow.com/questions/1924278/is-there-a-good-javascript-wysiwyg-tool-that-uses-absolute-positioning1Is there a good javascript WYSIWYG tool that uses absolute positioning?Travis2009-12-17T20:14:19Z2009-12-18T17:51:07Z
<p>I'm building a site where users (with no knowledge of html/css) will custom-design simple static HTML pages. Years ago, I used a CMS that used absolute positioning with drag and drop for designing static pages, and it was a fantastically easy UI for anyone to grasp.</p>
<p>I'm wondering if there's a javascript solution for this that I could implement in my new site. It would need the basic bold, italic, font size, image uploads available in something like TinyMCE, but I'd also like for elements to be positioned absolutely by the user.</p>
<p>Anyone know of such a solution?</p>
<p>JQuery solutions are fine, since I'm using JQuery anyway on the site. I'd prefer not to have to load in a second framework.</p>
http://stackoverflow.com/questions/1928688/custom-uis-in-c-with-qt2Custom UIs in C++ with Qt?Daniel S2009-12-18T14:56:57Z2009-12-18T16:30:59Z
<p>Coming from C#, I've decided to learn C++ with the Qt framework. I have one question though, what is the "correct" way to accomplish an UI like this one? This may be kind of subjective, but I'm sure that stacking image labels on top of each other isn't the right way.</p>
<p><img src="http://img685.imageshack.us/img685/7643/mockup.png" alt="browser mockup"></p>
http://stackoverflow.com/questions/1927869/wpf-blend-like-uis-using-docky-some-errors0WPF Blend like UIs using DOCKY - some errors...Vytas9992009-12-18T12:11:16Z2009-12-18T12:11:16Z
<p>Hello. Im trying to use Marlon Grech's "Blend like UIs using DOCKY", located at <a href="http://marlongrech.wordpress.com/2008/01/29/create-blend-like-uis-using-docky/" rel="nofollow">http://marlongrech.wordpress.com/2008/01/29/create-blend-like-uis-using-docky/</a>
and i get some erros like:</p>
<pre><code>Error 13 'XSoftArt.WPFengine.FrameworkElement' does not contain a definition for 'IsLoaded' and no extension method 'IsLoaded' accepting a first argument of type 'XSoftArt.WPFengine.FrameworkElement' could be found (are you missing a using directive or an assembly reference?) D:\!_Projects\Teleric_EmptyProject WPF\XSoftArt.WPFengine\XSoftArt.WPFengine\DockableContainer.cs 411 31 XSoftArt.WPFengine
Error 15 'XSoftArt.WPFengine.FrameworkElement' does not contain a definition for 'Loaded' and no extension method 'Loaded' accepting a first argument of type 'XSoftArt.WPFengine.FrameworkElement' could be found (are you missing a using directive or an assembly reference?) D:\!_Projects\Teleric_EmptyProject WPF\XSoftArt.WPFengine\XSoftArt.WPFengine\DockableContainer.cs 413 30 XSoftArt.WPFengine
Error 16 'XSoftArt.WPFengine.FrameworkElement' does not contain a definition for 'ActualWidth' and no extension method 'ActualWidth' accepting a first argument of type 'XSoftArt.WPFengine.FrameworkElement' could be found (are you missing a using directive or an assembly reference?) D:\!_Projects\Teleric_EmptyProject WPF\XSoftArt.WPFengine\XSoftArt.WPFengine\DockableContainer.cs 464 50 XSoftArt.WPFengine
</code></pre>
<p>What i should include or correct to dont get these errors..?</p>
http://stackoverflow.com/questions/686622/how-do-browsers-ui-elements-available-on-the-mobile-phone-platform0How do browsers UI elements available on the mobile phone platform?chairmeister2009-03-26T16:47:42Z2009-12-18T02:00:05Z
<p>I'm designing a website for the high end mobile phones, and I want to know how the different UI elements (e.g. buttons, check boxes, list boxes, textfields, etc) look like on different mobile browsers (eg safari, webkit, IE, etc) on different devices (e.g. Nokia, iPhone, etc). Can you offer some advice how I can get access to these without having to purchase the devices or using some online simulators? </p>
<p>Also I'm not so clear how these basic UI elements that is available from the platform works - do the mobile brwosers use their own UI elements or do they take the UI elements from the device OS and apply some visual style (e.g. checkboxes in safari looks different from that on IE on desktop browsers)?</p>
http://stackoverflow.com/questions/1924102/what-label-to-choose-my-account-or-your-account3What label to choose: "My account" or "Your account"Ferdy2009-12-17T19:47:00Z2009-12-18T00:54:32Z
<p>I have somewhat of a strange question that is not really technical, but I do hope to collect meaningful advise for. </p>
<p>I'm building a large web application, basically a photo sharing community site. As part of this site, logged-in users can go to their profile, from which they can see their own things (images, comments, votes) as well as edit their details and preferences. Users can also see profiles of others users (their images, comments, votes), but of course not edit their details.</p>
<p>The question I have is simple but it keeps bothering me: How to call the personal links and content of a user. Do you name everything "Your":</p>
<p><strong>Your images<br>
Your profile</strong>
...</p>
<p>...or "My":</p>
<p><strong>My images<br>
My profile</strong></p>
<p>...or perhaps named (even if you're logged in):</p>
<p><strong>Fledder's images<br>
Fledder's profile</strong></p>
<p>As unimportant as it may sounds, I'm really looking for advise in this area. Of particular interest are any standards there may be, and I also consider it important why something is preferred in which context.</p>
http://stackoverflow.com/questions/1765051/is-there-any-command-to-update-ui-immediately3Is there any command to update UI immediately?chaowman2009-11-19T17:24:05Z2009-12-17T12:30:02Z
<p>I want to update a progress bar from running 1 to 100 with this code.</p>
<pre><code>for (int i = 0; i <= 100; i++) {
System.Threading.Thread.Sleep(100);
progressBar1.Value = i;
}
</code></pre>
<p>But the result is, the UI freeze until looping finish.</p>
<p>I know <code>Dispatcher</code> can help, but I don't want to split function.</p>
<p>Is there any command to update UI immediately like..</p>
<pre><code>for (int i = 0; i <= 100; i++) {
System.Threading.Thread.Sleep(100);
progressBar1.Value = i;
UpdateUINow();
}
</code></pre>
<p>Edit: I'm using WPF, and I use Thread.Sleep to simulate long running process.</p>
<p>In fact, I want any command liked <code>Application.DoEvents</code>. But I cannot find this command in WPF.</p>
http://stackoverflow.com/questions/1847151/how-do-i-change-server-script-background-in-visual-studio-20082How do I change server script background in Visual Studio 2008Robert Koritnik2009-12-04T14:08:39Z2009-12-17T11:53:10Z
<p>I'm developing <strong>Asp.net MVC</strong> applications and since there's quite a bit of in-place server scripts in my aspx/ascx files it can become really messy finding your way around.</p>
<p>What I would like to do (to make things easier on me) is set some background colour to server-side scripts.</p>
<p>Right now only <code><%</code> and <code>%></code> have yellow background, but I would like <strong>the content between these two</strong> to also have a certain background colour. Something similar that Tengible's T4 editor does in T4 files with template <a href="http://t4-editor.tangible-engineering.com/T4-Editor-Visual-T4-Editing.html" rel="nofollow">executable code</a>.</p>
<p><strong>How do I do this if at all possible?</strong></p>
<p><strong><em>A sidenote</em></strong><br>
<em>This is not related to Asp.net MVC in particular but to Visual Studio in general. It will benefit Asp.net MVC developers the most though.</em> :)</p>
http://stackoverflow.com/questions/1920937/problem-with-background-worker0Problem with background workerOxymoron2009-12-17T10:53:50Z2009-12-17T11:06:33Z
<p>Say I have the following class/Form (semi psuedo):</p>
<pre><code>public partial class X : Form
{
private DataTable dt;
private BackgroundWorker bg;
public X()
{
dt.Columns.Add("A");
dt.Columns.Add("B");
dt.Columns.Add("C");
}
private void button_Click(...)
{
bg = new BackgroundWorker();
bg.DoWork += new DoWorkEventHandler(bg_DoWork);
bg.RunWorkerAsync();
}
private void bg_DoWork(...)
{
// do some stuff
MagicMethod(parameters);
// doesnt work, how to fix this?
dataGridView1.Invoke((Action)delegate { dataGridView1.DataSource = dt; });
}
private void MagicMethod(params)
{
// update a label, WORKS
label1.Invoke((Action) delegate { label1.Text = "somestuff" }
// do some stuff to fill the datatable
}
}
</code></pre>
<p>Ofcourse this is a distilled version, without the BackgroundWorker everything is sound, but since I want a more responsive UI I try to implement one. But the grid doesnt get updated by the worker (whereas the label does correctly). Any tips?</p>
http://stackoverflow.com/questions/1914408/jquery-ui-style-customization0jquery ui style customizationmanu10012009-12-16T12:35:46Z2009-12-16T12:40:26Z
<p>how do i change the tab size, font size etc for my jquery accordion?</p>
http://stackoverflow.com/questions/1188285/a-library-that-allows-to-add-footnotes-to-a-web-page0A library that allows to add footnotes to a web pageElazar Leibovich2009-07-27T13:55:39Z2009-12-16T01:23:52Z
<p>I would like to add in my web app ability to add comments to a specific word in the page. Something like the LaTex footnotes.</p>
<p>The UI I had in mind is, each word would be highlighted when the mouse hovers over it (or that the space after it is being highlighted), and when the user clicks, a textbox to enter the comment pops up near the place the comment would appear. After the user entered the comment a little number would appear after this word in the web page, and other users would be able to click on this number and reveal the comment.</p>
<p>The architecture I had in mind is, a client side javascript program that would handle the <code>view</code>. The <code>model</code> and the <code>controller</code> would be on the server. They would save the document in some textile-like format (say, StackOverflow's question's format), and would only verify permissions (ie users would only be allowed to add [1] (user-name) ... to the document body
).</p>
<p>That's the architecture and UI I had in mind, but I'm open to new suggestions.</p>
<p>Is there any similar component availible?</p>
http://stackoverflow.com/questions/1551016/star-rating-widget-for-jquery-ui0Star Rating widget for jQuery UIRoger2009-10-11T15:57:48Z2009-12-15T14:36:18Z
<p>I was introduced to the Star Rating widget for jQuery UI: <a href="http://orkans-tmp.22web.net/star_rating/" rel="nofollow">http://orkans-tmp.22web.net/star_rating/</a>
I was originally using this one: <a href="http://www.fyneworks.com/jquery/star-rating/" rel="nofollow">http://www.fyneworks.com/jquery/star-rating/</a></p>
<p>Is there any difference between using the two?</p>
<p>Well trying to use the jquery UI one, I can't get the input buttons to show up as stars. I have these js and css files included:</p>
<pre><code><script src="jquery-1.3.2.min.js" type="text/javascript"></script>
<script src="jquery-ui-1.7.2.custom.min.js" type="text/javascript"></script>
<script src="ui.stars.js" type="text/javascript"></script>
<link href="ui.stars.css" type="text/css" rel="stylesheet" />
</code></pre>
<p>And for my code, simply:</p>
<pre><code><form>
Rating: <span id="stars-cap"></span>
<div id="stars-wrapper1">
<input type="radio" name="newrate" value="1" title="Very poor" />
<input type="radio" name="newrate" value="2" title="Poor" />
<input type="radio" name="newrate" value="3" title="Not that bad" />
<input type="radio" name="newrate" value="4" title="Fair" />
<input type="radio" name="newrate" value="5" title="Average" checked="checked" />
<input type="radio" name="newrate" value="6" title="Almost good" />
<input type="radio" name="newrate" value="7" title="Good" />
<input type="radio" name="newrate" value="8" title="Very good" />
<input type="radio" name="newrate" value="9" title="Excellent" />
<input type="radio" name="newrate" value="10" title="Perfect" />
</div>
</form>
</code></pre>
<p>All the files and images are in the same folder. I've never used jquery UI before, so I'm not sure if all I need is that file. I'm not sure if it needs it either, the other star rating plugin I was using didn't require it. Anyone know what I'm missing anything?</p>
http://stackoverflow.com/questions/1904531/best-way-to-architect-javascript-ui-code-with-asp-net-in-terms-of-reuse-and-logic4Best way to architect JavaScript UI code with ASP.NET in terms of reuse and logic encapulation?Jeffrey2009-12-15T00:36:15Z2009-12-15T14:28:05Z
<p>I am having trouble settling down to a proper practice for UI JavaScript coding. So I am looking for a smarter way to do things. I’ve been using jQuery with ASP.NET and I have been doing things like below which seems unprofessional and dumb. JavaScript UI programming has always been a mysterious to me. I know how to do it but I never knew how to do it properly.</p>
<pre><code>$(function(){
$('submit').click(function() {
//behaviors, setup styles, validations, blah...
});
});
</code></pre>
<p><strong>Problems:</strong></p>
<ul>
<li>Code duplications are often therefore harder to maintain and reuse</li>
<li>With ClientIds are generated by ASP.NET, it’s hard to pull code chunks into separate js files</li>
<li>Common declarations are placed on master pages, however jQuery document ready function appears almost on every other pages as well</li>
</ul>
<p><strong>Goals:</strong></p>
<ul>
<li>JavaScript library/framework independent, so that it will be easier to switch frameworks down the road</li>
<li>Encapsulate/modulate logic for easy reuse, so that on each page, it will only be a few simple lines of initialization code</li>
<li>Separation of concerns for easy maintenance and readability</li>
</ul>
<p><strong>Questions:</strong></p>
<p>Being a C# developer mainly my thinking is very OO and jQuery is very procedural. I understand the concepts of Anonymous Function however in general my mind is still trying to make a domain model which abstracts the UI then declares properties or methods. But I am really not sure if this is the way in JavaScript. Or am I being too ideal or am I trying too hard to make something that's not supposed to be OO OO like? So the questions are:</p>
<ul>
<li>Should I start to encapsulate/modulate functions using JavaScript prototype and make it a bit more OO like? So that HTML controls or behaviours can be encapsulated for reuse?</li>
<li>Or should I start encapsulate logics into jQuery plug-in? But this way the code will be 100% dependent on jQuery.</li>
<li>Or any other approaches?</li>
</ul>
<p>Thank you.</p>
<p>Updated:
I just found this <a href="http://www.slideshare.net/s.barysiuk/javascript-and-ui-architecture-best-practices-presentation" rel="nofollow">slide</a> and it seems to be a good starting point.
This is also a <a href="http://snook.ca/js/snook-v10.js" rel="nofollow">good example</a> that I just found. And a <a href="http://ejohn.org/apps/learn/" rel="nofollow">good tutorial</a> by the creator of jQuery.</p>
http://stackoverflow.com/questions/1907067/can-i-render-this-kind-of-drop-down-using-css2Can I render this kind of drop down using CSS?Manish2009-12-15T12:21:44Z2009-12-15T13:11:20Z
<p>I want to buid a web page. The page contains a drop down which should look like this:</p>
<p><img src="http://img694.imageshack.us/img694/9350/dropdown.png" alt="alt text"></p>
<p>Is it possible using CSS or I would need to use a image with some javascipt?</p>
http://stackoverflow.com/questions/1610542/custom-iphone-keyboard2Custom iPhone Keyboardvickirk2009-10-22T23:13:53Z2009-12-14T21:44:55Z
<p>Hi,</p>
<p>I need (i.e. a customer requirement) to provide a custom keyboard for the user to type text into both text fields and areas. I already have something that does the keyboard and appends test to a text field, however I'd like to make it more generic and have it act like the standard iphone keyboard, i.e. appear when teh user selects an editable text control. Currently my controller knows the target and the target is uneditable to prevent the standard keyboard.</p>
<p>Is there a way to hook into the behavior of text controls so I use my own keyboard easily? </p>
<p>Thanks, Vic</p>
http://stackoverflow.com/questions/1821871/android-how-to-fire-onlistitemclick-in-listactivity-with-buttons-in-list0Android: How to fire onListItemClick in Listactivity with buttons in list?CSharperWithJava2009-11-30T19:27:33Z2009-12-14T19:10:47Z
<p>I have a simple ListActivity that uses a custom ListAdapter to generate the views in the list. Normally the ListAdapter would just fill the views with TextViews, but now I want to put a button there as well.</p>
<p>It is my understanding and experience however that putting a focusable view in the list item prevents the firing of onListItemClick() in the ListActivity when the list item is clicked. The button still functions normally within the list item, but when something besides the button is pressed, I want onListItemClick to be triggered.</p>
<p>How can I make this work?</p>
http://stackoverflow.com/questions/674171/using-excel-as-ui-without-vb2Using excel as UI without VB012009-03-23T16:46:56Z2009-12-14T15:52:02Z
<p>I think every business person would like to have excel UI, however they are forced into using web applications that sometimes look like really bad excel.</p>
<p>Are there any frameworks that help build excel ui without VB? I dont mean framework like POI or JExcel that allows you to generate excel reports.</p>
http://stackoverflow.com/questions/1900614/ui-question-designing-for-widescreen-and-43-aspect-ratios-simultaneously-1UI question: Designing for widescreen and 4:3 aspect ratios simultaneously?meds2009-12-14T12:21:05Z2009-12-14T12:50:52Z
<p>I'm working on a UI which needs to work in different aspect ratios, 16:9, 16:10, 4:3</p>
<p>The idea is conceptually simple: Everything is centered to the screen in a rough 4:3 area and anything outside this portion of screen has basic artwork, so something like this:</p>
<p><img src="http://imgur.com/hcAjJ.png" alt="alt text">
(not drawn to scale)</p>
<p>Where the pink area represents whre all the UI objects are positioned and the blue area is just background and effects.</p>
<p>The trick is in usability, if I pass in coordinates (0,0) in a 4:3 aspect ratio environment (0,0) would be the top left of the screen. However if I'm in a 16:9 environment (0,0) needs to get renormalized based on the new aspect ratio for it to be in the appropriate place. So my question is: How can I achieve this?</p>
<p>edit: for clarification this is basically for a UI system and while I listed the ratios above as 4:3, 16:9, 16:10 it should be able to dynamically adjust values for whatever aspect ratio it is set to.</p>
<p>edit 2: Just to add more details to the situation: When the positions fo rsetting are passed in they are passed in as a % of the screens current widht height, so basically setting position x would be: [pos x as portion of screen]*SCREEN_WIDTH where screen width is the width of the current screen itself.</p>
http://stackoverflow.com/questions/1888329/is-it-acceptable-for-developers-to-have-little-or-no-knowledge-of-ui-design10Is it acceptable for developers to have little or no knowledge of UI design? [closed]Stimul8d2009-12-11T14:14:35Z2009-12-14T09:28:30Z
<p>In response to <a href="http://stackoverflow.com/questions/1887871/apart-from-programming-languages-what-else-to-do/1888150#1888150">'Apart from programming languages what else to do?'</a>, I suggested that it's important to have some knowledge of interface design to work in software development.</p>
<blockquote>
<p>Learn interface/interaction design. As
programmers, we are notoriously bad at
this and we always give the same old
excuse,..."that's a designers job". I
can count on one hand the number of
development houses I'm aware of that
hire a designer to do the front end
work.</p>
<p>With emerging technologies allowing us
to create better and more usable
interfaces this is one of the biggest
gaps in our knowledge as a body of
professionals and something we should
be actively trying to improve.</p>
</blockquote>
<p>Now, I came to be a developer through graphic deign, in to web design, then web development and finally LOB desktop development. So my background in design may have made me biased but I wanted to gauge opinion on this. </p>
<p>In my opinion, getting the user interface right is <strong>at least</strong> as important as getting the code right and having little or no knowledge in this area is no longer acceptable for a proactive developer. Do you agree?</p>
<p><strong>Update</strong>-
To those who say it's okay because you might never work with the UI or very rarely, let me ask this: If I never have a need to work with databases, does that make it okay to have no understanding of them? All I'm saying is that we don't seems to value UI design as a skill in our line of work. Maybe that's because it's no so technical and there are no hard-and-fast answers.</p>
http://stackoverflow.com/questions/730026/extjs-sortable-elements-list0ExtJs sortable elements listNikolai2009-04-08T13:33:45Z2009-12-14T00:00:01Z
<p>Is there any implementation of sortable list in ExtJs as JQuery UI .sortable has ?
Or how could I drop element using jQuery UI sortbale from eastern panel of ExtJs layout to droppable sortable element in central panel of layout ? Now dragging element hides under layout :(</p>
http://stackoverflow.com/questions/1308596/flex-3-how-can-i-change-a-popupbutton-into-a-regular-button-when-theres-only-on0Flex 3: How can I change a PopupButton into a regular Button when there's only one menu item available?DyreSchlock2009-08-20T20:22:48Z2009-12-14T00:00:01Z
<p>Hi there.</p>
<p>I have a PopUpButton that only contains 2 actions. Both actions are complete opposites of each other and switches a boolean property on an object from true to false or false to true. To avoid redundancy, I've only displaying one action at a time. So, if the property is true, the action to change it to true is not shown. </p>
<p>If my PopUp menu has a single option, I would like to remove the menu from being shown and basically revert the PopUpButton to act and look like a regular button. So far, I haven't really found a good way to do that in ActionScript without adding, removing or modifying styles for the button.</p>
<p>Is there a nice way to simply tell the button to hide the PopUp toggle?</p>
<p><strong>PS</strong>: In my specific example, YES it might be easier if I just used a toggle button. However, I want to reuse this button when dealing with an Array of objects. If I have more than one, the property could be true and false at the same time. In that case, I want to show the menu so they can choose what option to set all the object's properties to.</p>
http://stackoverflow.com/questions/1896635/jquery-ui-tabs-dynamically-adding-and-removing-mouseover-event0JQuery UI Tabs - dynamically adding and removing mouseover eventdavidP2009-12-13T14:17:56Z2009-12-13T14:30:54Z
<p>I would like to add a mouseover event to a UI tab strip when user clicks on a checkbox, but I am trouble dynamically adding and removing events. Here is what I have so far.</p>
<pre><code><script type="text/javascript">
$(function() {
// add mouseover event when user clicks on checlkbox called chkbEnableMouseOver
$("#chkbEnableMouseOver").change(function () {
if (($("#chkbEnableMouseOver").is(":checked"))){
$('#tabs').tabs.live("click",function(){ });
}
else{
$('#tabs').tabs.live("click",function(){ event: 'mouseover'; });
}
});
// UI tab strip - no default mouseover event
$("#tabs").tabs({ });
// UI tab strip - WITH default mouseover event
//$("#tabs").tabs({ event: 'mouseover' });
});
</script>
<input TYPE="checkbox" id="chkbEnableMouseOver" >enable mouseover on tabs
<div id="tabs">
// tabs go here
</div>
</code></pre>