This module provides a set of methods to perform asynchronous HTTP (Ajax) requests. It allows data to be loaded from the server without a browser page refresh.

Usage

The functions in this module can be accessed using the syntax ix.api.request.ajax();

Example

var ixAjax = ix.api.request.ajax();
ixAjax.requestGroovy('groovy/de/uplanet/lucy/samples/newGuid.groovy', {
dataType: "json",
data: {
"hello": "world!"
},
success: function (data) {
Notifier.status.notify(data.guids.join("<br>"));
}
});

Index

Classes

Interfaces

Functions