user-interface

How can I create an interface similar to an Excel spreadsheet on the iPhone?

Hi, I want to develop an iphone interface, using objective-c, which behaves like an Excel sheet. It would display a grid which can be scrolled vertically as well as horizontally but during a vertical scroll, the first row will freeze, and during a horizontal scroll, the first column will freeze. How can this be done? I am new to iphone...

How to implement a large grid of cells in an iPhone application?

In reference to my previous question, I would like to know how to implement a large grid of cells in an iPhone application. I'm working on an interface which would be similar to an Excel spreadsheet, with many rows and columns. Do I have to handle each cell separately? How can I handle user interaction in each cell? Is there a standard...

jQuery draggable:sortable

Hi, I am using the JQuery libs to implement drag and drop. How do I get at the element that is being dragged when it is dropped into sortable list? I want to get the id of the div being dragged. The following element is dragged: <div class="control" id="control[1]" > <img src="img/controls/textfield.png" /> </div> I have the stand...

How does one use onmousedown/onmouseup correctly?

Whenever I write mouse handling code, the onmousedown/onmouseup/onmousemove model always seemed to force me to produce unnecessarily complex code that would still end up causing all sorts of UI bugs. The main problem which I see even in major pieces of software these days is the "ghost mouse" event where you drag to outside the window ...

jQuery UI vs. Scriptaculous ?

Which is better for UI development. Are there any differences between the two UI toolkits? ...

Drag and drop in mozilla canvas

Hello All, I want to implement a drawing pane (similar but smaller version to what visio gives for flow charts) in mozilla canvas. Is there any support for this? I have used jQuery till now to create the rectangles and move them around. While this is easy here..creating lines (connections between objects) is a real pain. I am using so...

Working examples of winform/WPF apps

I'm a user interface designer. The project I'm working on is a dashboard that will have several interactive and customizable widgets (think Netvibes, etc.). The development group is going to be using either WinForm or WPF to build the dashboard and widgets. I need to understand the capabilities of each technology better and see a sampli...

What's best when inserting into a table view, and add button or a blank line?

When presented with a simple table view (or even a list view I suppose) what is your preferred method of entering new data. With add/delete buttons like this: Or with a blank line indicating a new record like this: ...

User notification ASP.NET (want the ability to trigger from BOTH server and client)

I saw a couple of similar questions here, but what I'm trying to do is a bit different. I want to have a way to give users some feedback on their actions which can be controlled from both client and server side. I've build a UserControl with a label (label's text property is exposed) and some JS which hides the label shortly after the ...

How was "ten thousand cents" implemented?

How was ten thousand cents implemented? I am particularly interested in the implementation of the interface that accepted the drawings from the user? Are there libraries available that facilitate this? ...

What is the most intuitive, usable way of entering a time of day or a duration?

I'm building a line-of-business application in Silverlight and need to get the user to edit two .NET TimeSpan values. One is a time of day (relative to midnight) and the other is a duration. Currently I'm using two TextBoxes, formatted as hh:mm. This is pretty straightforward, but it could definitely be improved. I've observed people usi...

Building a user interface to an Excel model

I built an excel model used to analyze real estate transactions. I would like to create a user interface to overlay the model so that the file can be distributed to clients to evaluate potential investments The interface will serve two primary functions: 1)Enhance the user experience by creating an easy to follow input page. The enter...

How to Test-drive GWT development?

Just googling 'TDD' and 'GWT' easily lead to this article where the author explained how he can test GWT app without container. However, I think his example is not test-driven as he has all the design first and than write the test afterwards, not 'test-first'. This leads me to think that is it possible to have 'test-first' development o...

Using excel as UI without VB

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. 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. ...

Which is the best UI from the movies

I see movies as a rich vein of design ideas to make our interaction with computers better. I'm sure there are many brilliant examples out there, I've put in some of my favourites, I'd like you to let your imagination and memory run free and feed the wiki. Clearly HAL had a pretty good UI, but it lacks much that we can build on today. ...

Data-centric web application design book/article recommendations

I am designing a web application that deals with lots of data. I find it difficult to present this data in a usable, intuitive way. The data has to be sortable/searchable, and the relationships between the data should be obvious (records can have "child items"). Are there any books that specifically deal with this? I am not looking for ...

Select dropdown with fixed width cutting off content in IE

The issue: Some of the items in the select require more than the specified width of 145px in order to display fully. Firefox behavior: clicking on the select reveals the dropdown elements list adjusted to the width of the longest element. IE6 & IE7 behavior: clicking on the select reveals the dropdown elements list restricted to 145px...

Converting a Page to a User Control

Hello, If we want to convert a Page to user control then we should also do the following: “If you aren’t using the code-behind model, make sure you still include a class name in the Control directive by supplying the ClassName attribute. This way, the web page that consumes the control can be strongly typed, which allows it to access p...

Office 2007 Style UI Ribbons: DevExpress or TMS?

Who provides the better solution for this particular component? ...

UIAlertView inside an NSOperation is not modal in iPhone

So I am trying to create a check that tries to connect to the WWW. when it fails it needs to then retry several times before the application gives up and quits. Each time it retries the user is propted with an UIAlertView with the options to Retry or Cancel. So here is the problem. I have a chain of actions in an NSOperationQueue, all...