The ui tag has no wiki summary.
0
votes
1answer
68 views
Tool for work between UI/UX Designers and developers to show animations
Are there any standard tools for work between designers and developers, especially for designer to explain flow and animations (e.g. animation of components on ipad)?
1
vote
1answer
70 views
Display rich text in tool tip
In this particular website, when you hover your mouse over a particular region, it displays something that is clickable. I know of tool tips, but in my experience, I have only used tool tips to show ...
1
vote
1answer
121 views
Separating model from UI
I have a Swing application with a custom TreeModel that can refer to domain instances. I'm wondering what changes I could make if I consider moving to a web interface later on. Would a pluggable model ...
9
votes
1answer
357 views
UI patterns in functional languages
I would like to start fiddling with ClojureScript, but I am puzzled about some points. My problem is what is a good way to deal with state changes coming from user interaction, when you trying to work ...
13
votes
6answers
632 views
Is it a good idea to do UI 100% in Javascript and provide data through an API?
My primary day job is making HTML applications. With that I mean internally used CRUD-type applications with lots of editable gridviews, textboxes, dropdowns, etc. We're currently using ASP.NET ...
6
votes
3answers
335 views
How could I make automatic tests for GUI?
How can I check automatically what is seen and what not? Or at least, how can I organize some partly automatic tests?
IDE: Eclipse (could use also IntelliJ Idea if necessary)
Testing tool: Junit ...
0
votes
0answers
132 views
Are apps made with WxWidgets accepted in the Apple App Store? [closed]
I'm looking for a framework for reworking one of our Windows apps so it can deploy cross-platform (Windows, Mac, maybe Android or Linux), and I'm giving WxWidgets a serious poke, but it's unclear ...
3
votes
2answers
145 views
What should a GetSelectedIndex method return when no rows are selected
I'm creating a UI table component that returns an array of selected indices.
Some typical return values would be
var myRetVal1 = [0];//one value selected
var myRetVal2 = [0,1,2,3,8,11];//multiple ...
3
votes
5answers
691 views
UI Developer Interview Question
I keep getting the following question in interviews; and judging from the reactions I've gotten, I'm not giving the best answer. "What methodology do you use for developing user interfaces?" Which ...
5
votes
2answers
225 views
How come the design process is so different for Web Design and GUI Design?
I had the opportunity to develop applications in several niches:
server back-end, desktop clients, and recently a small scale website.
Once indulged in the website design I am asking myself and you
...
1
vote
1answer
33 views
What should be included on an About page/form?
I was looking to add a simple form that states my project's build number on a form to quick identify what version I am running. Then I realized I'm not sure what fits on an about page.
In my ...
0
votes
2answers
114 views
Looking for input on a daily scheduler app UI and implementation
I'm currently evaluating different asp.net components for the main UI in a “Daily Employee Scheduler” app I'll be making. The tool will be rolled out at a few different locations, which makes it ...
0
votes
1answer
243 views
Organizing large Javascript applications - The view layer
Today Javascript application of a relevant size become more and more common, and as the need arises, certain patterns are identified to manage the code complexity.
I try to follow good advice, but I ...
0
votes
1answer
80 views
prism and multiple screens
OK - I am studying Prism a little because of a "free weekend" offer on Pluralsight. As this is proving too complex for me, I went to the Prism book and looked at the forward, and this is what it said:
...
5
votes
2answers
566 views
Decoupling UI code?
In my application I have several event handlers that perform some action in response to user interface events such as a button click or menu selection. The code in these event handlers looks like ...