|
|
|
02/19/2006
In this entry, I try to sum up some rules that should be looked over when
adding AJAX features in a CMS.
keep accessibilityA CMS is used by a wide variety of people and WAI rules should be kept in mind. All functions and screens should be usable even though javascript is not enabled. This means that AJAX features have to be implemented with methods like graceful degradation to avoid the CMS to be dependent on Javascript features. Most of the time, this is quite easy to implement a Javascript enhanced version over a regular version, but sometimes two version has to be developed in parallel, like gmail for example does. There are few exceptions for this rule:
one state, one urlThis is probably one of the most important point. When developing ajax interfaces, it's very tempting to develop advanced screens that let the user play around without doing direct calls. The javascript retrieves datas asynchronously from the server and refresh the interface, the user makes changes, and the javascript display these changes directly. One of the common approach is to use a "model-driven" infrastructure that let the different interface elements get synchronized with a local pool of data, using xml transformation or, like in some recent developments, using things like CTAL. In other words, if the user changes the data through one interface, like an input text, a button, or anything else, the local data pool is changed and other part of the screens are refreshed consequently. It's a great approach as long as the rendered screen looks exactly as it would look if another user would load the same url in her browser. This means that the server state should always be synchronized with what the user is doing. So having a local pool of data (what people call "model-driven") is more likely to be an optimisation to minimize exchanges by having a local cache, and should be done with this rule in mind. Of course the benefit of this approach also let the client-side calculate the interface itself. In this case the javascript becomes a template engine and push the server to a single role wich is: data provider; but this has to be done with the first rule in mind: a javascript template engine won't work under lynx, and having two mecanisms to do the same thing can be hard to keep growing together. Back to the one state, one url rule. If this rule is not respected, third party softwares, like search engines, or xml-rpc callers, won't be able to use the web application because they use urls as single state elements. Moreover, users most of the time expect a given url to give them the same result (that's why the "favorite" button exists) use test-driven approach, and automate tests
|
Nuxeo Bloggers: Log in! Search Nuxeo Blogs
About this blog
Tarek Ziadé Nuxeo Bloggers
Photos and Pictures
|
|
Nuxeo -
Indesko -
Nuxeo 5 Project
All content is copyrighted by their author. CPSSkins is Copyright © 2003-2006 by Jean-Marc Orliaguet. | CPS is Copyright © 2002-2006 by Nuxeo SAS. |