|
AJAX or Asynchronous Javascript and XML is a term describing a web development technique for creating interactive web applications using a combination of Javascript and XML.
Using the Ajax technique in MoreMotion is very easy since the page parts to be refreshed can be developed visually where as a standard Ajax implementation is responsible for the followings:
A standard Ajax implementation responsibilities:
- Preparing the XMLHttpRequest
- Receiving the response and traversing on the returned XML Nodes
- Changing the parts of DOM (i.e. refilling select elements, tailoring tables, etc) with the refresh information extracted from the XML Nodes.
A MoreMotion Ajax Implementation responsibilities:
- Designing the Source and the Target parts in pages visually
- Calling the Refresh function from an event procedure
|