The AISP way.

hicham
- May 29th, 2008
In next posts, we will introduce parts of Enlide Interface and here are our thought about user interface design.



The end of GUI

gui      Early user interfaces, or Graphical User Interface (GUI), were based on operating systems multitasking ability without any Human-Computer Interaction model.

     But studies have shown that users usually keep a single window up at a time on their desktop, and the internet user experience is multipages based : users go from page to page. That's the reason why so many UI are not user friendly.

The multipage navigation is visually close to the GUI way of displaying windows : each action could trigger a pop up which in turn could trigger.... But the perceived complexity of application is tightly coupled with the number of modal pop-up.

Then should we re-implement multi-window UI paradigm when designing web applications ?



The Rise of AISP

aisp      At Enlide, we believe in AISP UI : All In a Single Page User Interface. Ajax has bring a lot of features to html pages : drag and drop, auto-completion ... But one of its interesting aspect, it's the ability to group all ui element in a single page. It allows to drasticly reduce the number of modal windows and to improve the interactivity.

     Most developers have faced the problem of grouping controls within forms, pages, or windows and set-up an efficient user workflow. AISP is the answer : dispatch your UI element on a single page and display them when needed. Modal pop-up are reduced to minimum and usability can be extended with each Ajax features.

A simple paradigm applied to application UI design.

Leave a Reply